varansunil Report post Posted January 28, 2008 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
FusionCharts Support Report post Posted January 28, 2008 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