Sign in to follow this  
varansunil

Multi-series Area 2D chart

Recommended Posts

Iam using Multi-series Area 2D chart,can u please guide me in specifying the appropriate XML

attributes for displaying the anchors(plots) in the graph

please give me the sample XML data to display the anchors(plots) in the curve(graph)

tell me How  and where to the attriburtes

drawAnchors,

anchorSides, anchorRadius

Share this post


Link to post
Share on other sites

hi,

You need to use anchorAlpha='100' to make the invisible-but-enabled anchors visible.

<chart anchorAlpha='100' >

<categories>

 <category label='Jan' />

 <category label='Feb' />

 <category label='Mar' />

</categories>

<dataset seriesName='2005' >

 <set value='31900' />

 <set value='32900' />

 <set value='34800' />

</dataset>

<dataset seriesName='2006' >

 <set value='21900' />

 <set value='22900' />

 <set value='29800' />

</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