vsc Report post Posted November 2, 2010 Is there a way to set different Y-AXIS intervals. We would like to setup a chart where : yaxisminvalue: "0", yaxismaxvalue: "1.6", numDivLines: "4" Currently the values for each div line are: 1.2 0.9 0.6 0.3 We would like the div line values to be like this: 1.0 0.7 0.4 0.2 Can you advise us if this is possible? See attachment for a clearer picture of what we want to do. Thanks! Share this post Link to post Share on other sites
Sanjukta Report post Posted November 2, 2010 Hi, Welcome to FusionCharts Forum! I am afraid, FusionCharts does not support the display of the div lines at irregular intervals (as you wish to display), as of now. Please try not to display Y-axis values by setting "showYaxisValues" to '0' in the <chart> element. Instead, draw trendlines wherever you want to display the div line. Ex: <trendLines> <line startValue='0.2' color='009933' displayvalue='0.2' /> <line startValue='0.4' color='009933' displayvalue='0.4' /> <line startValue='0.7' color='009933' displayvalue='0.7' /> <line startValue='1' color='009933' displayvalue='1' /> </trendLines> Hope this helps. Share this post Link to post Share on other sites