Sign in to follow this  
majid

Dashed Lines On Multi Series Area Chart

Recommended Posts

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

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.

post-24802-0-69210200-1337150597_thumb.png

Share this post


Link to post
Share on other sites

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

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