MasterMind Report post Posted July 30, 2007 I want to use the next data as 'display' : xmlData.Append( "<categories>");xmlData.Append( "<category label='1 2004' /> ");xmlData.Append( "<category label='2 2004' /> ");xmlData.Append( "<category label='3 2005' /> ");xmlData.Append( "<category label='1 2005' /> ");xmlData.Append( "<category label='2 2006' /> ");xmlData.Append( "<category label='3 2006' /> ");xmlData.Append( "<category label='1 2007' /> ");xmlData.Append( "</categories>"); but using in coordinate points as xmlData.Append("<categories>"); xmlData.Append("<category label='start 1 2004' /> "); // no display .... xmlData.Append("<category label='1 2004' /> "); // display .... xmlData.Append("<category label='stop 1 2004' /> "); // no display xmlData.Append("<category label='start 2004' /> "); xmlData.Append("<category label='2 2004' /> "); xmlData.Append("<category label='sttop 2004' /> "); ... how to make this? Share this post Link to post Share on other sites
Pallav Report post Posted July 30, 2007 You may set <chart labelStep='2' ..> Share this post Link to post Share on other sites