majid Report post Posted May 15, 2012 Is it possible to have one series a dashed border and one series a solid border on a multi-series area chart. To me it seems like the property plotBorderDashed=1 only works on the chart but not on a particular series. Is there a way around this limitation? Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 16, 2012 Is it possible to have one series a dashed border and one series a solid border on a multi-series area chart. To me it seems like the property plotBorderDashed=1 only works on the chart but not on a particular series. Is there a way around this limitation? Hi, To achieve this you can use dashed attribute for the particular dataset. You would need to specify this attribute under the dataset element that you want to make dashed. Ref. Code: <chart ... > ... <dataset seriesName='2005' dashed='1'> ... </chart> Please find attached screen-shot for your reference. Share this post Link to post Share on other sites
majid Report post Posted May 16, 2012 Thanks this worked perfectly. Is the 'dashed' attribute documented? I did not see it when I was looking for it in the docs. Hi, To achieve this you can use dashed attribute for the particular dataset. You would need to specify this attribute under the dataset element that you want to make dashed. Ref. Code: <chart ... > ... <dataset seriesName='2005' dashed='1'> ... </chart> Please find attached screen-shot for your reference. Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 17, 2012 Thanks this worked perfectly. Is the 'dashed' attribute documented? I did not see it when I was looking for it in the docs. Hi, Yes, this attribute is present in the documentation. Refer this: http://docs.fusioncharts.com/charts/contents/?ChartSS/MSArea2D.html Share this post Link to post Share on other sites
majid Report post Posted May 18, 2012 Thanks I must have overlooked that Hi, Yes, this attribute is present in the documentation. Refer this: http://docs.fusionch...S/MSArea2D.html Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 18, 2012 Thanks I must have overlooked that Share this post Link to post Share on other sites