Sign in to follow this  
vsc

Different Y-Axis Intervals

Recommended Posts

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!

post-10311-063510400 1288671703_thumb.png

Share this post


Link to post
Share on other sites

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

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