Sign in to follow this  
blincokf

scroll chart for single series

Recommended Posts

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

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

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