Sign in to follow this  
Adam

YAxis Stepping Problem

Recommended Posts

Hi,

Basically we want the yaxis values to be from 0.00 through to 3.00 with a horizontal line and yaxis marker at every .5. So at 0.00, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0 . However the system wacks its own in at 0.0,.6,1.2,1.8,2.4,3.0

How do i get it to do what we want if it can be done?

Cheers

Adam

Share this post


Link to post
Share on other sites

If you know that min value and max value cannot be less than 0 and greater than 3 respectively, you can manually set yAxisMinValue to 0 and yAxisMaxValue to 3 and then set numDivLines to 5.

Example:

<chart yAxisMinValue='0' yAxisMaxValue='3' numDivLines='5' decimals='2' yAxisValuesDecimals='2' ..>

Share this post


Link to post
Share on other sites

Hi

 

 

 

I face the same problem. I think it is very useful for every FusionCharts users to have precise yaxis values, I want to have 0,10,20,30 etc.. and instead I get 0,16,32,64 then my users don"t understand why "I" chose thoses values.

 

 

 

That's right the developper can set up the yAxisMinValue, yAxisMaxValue and numDivLines but it supposes more time spent on developpement and runtime to retrieve the min and max values and then deduce the according numdivlines.

 

 

 

It would be great to have a new parameter in a further version that would just let us specify the step between yaxis values (10 for me, 0.5 for Adam).

 

 

 

Regards

Edited by Guest

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this