Sign in to follow this  
uberalles

Labels are displayed on the chart

Recommended Posts

Hello guys,

if i have the labels = ' 1,2,3,4,5,6,7,8,9' and if i used "labelStep = '2' " then the result will be ' 1 , 3, 5 , 7 , 9' on the x axis.

How can start from 3 and my result will be ' 3 , 5, 7, 9' (avoid the first 2 labels)

Share this post


Link to post
Share on other sites

Hello uberalles,

To avoid the first two labels, simply use the showLabel attribute. Set it to 0 to hide the label/s in question. The XML should look something like this:

<set label='Feb 2006' value='376' showLabel='0'/>

Optionally, you could omit the label name, like this:

<set label='' value='376'/>
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