Adam Report post Posted December 18, 2006 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
Pallav Report post Posted December 18, 2006 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
Loko Report post Posted June 17, 2009 (edited) 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 June 17, 2009 by Guest Share this post Link to post Share on other sites
saptarshi Report post Posted June 17, 2009 Hello, Your suggestion is really reasonable. We hope to implement it in the next version of FusionCharts. Thank you so much! Share this post Link to post Share on other sites