uberalles Report post Posted March 26, 2009 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
Dhruva Report post Posted March 26, 2009 (edited) 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 March 26, 2009 by Guest Share this post Link to post Share on other sites
uberalles Report post Posted March 27, 2009 Thx you very much Share this post Link to post Share on other sites
Dhruva Report post Posted March 27, 2009 You're welcome! Share this post Link to post Share on other sites