blincokf Report post Posted January 27, 2009 I notice scroll chart is used only for multi-series. In my application, I often have a single series with many many points. e.g show daily position for last 2 years in column/line chart. Without a scroll bar, such chart would be too crowded. Do you have any suggestions? Thank you. Ken Share this post Link to post Share on other sites
Rahul Kumar Report post Posted January 29, 2009 Hi, You could use scroll chart for single series data too, just need to add all single series data under a <dataset> element and you label(s) should be in category. Please see the XML below: <chart palette='2' caption='County Comparison' shownames='1' showvalues='0' numberPrefix='$' useRoundEdges='1' legendBorderAlpha='0'><categories> <category label='Iowa' /><category label='Texas' /> <category label='Virginia' /> <category label='Ohio' /> <category label='Idaho' /> </categories><dataset seriesName='2002' color='AFD8F8' showValues='0'> <set value='25601' /> <set value='20148' /> <set value='17372' /> <set value='35407' /> <set value='38105' /> </dataset> </chart> Share this post Link to post Share on other sites
blincokf Report post Posted January 30, 2009 Thanks. It worked. Share this post Link to post Share on other sites