Sign in to follow this  
kristopher

Trendline thickness and dashed property

Recommended Posts

<trendlines> <line startValue='100000' color='ff0000' displayValue='Today' dashed='1' dashGap='2' showOnTop='1' /> </trendlines>

This causes the line to be two pixels thick, but loses the dashed property.  Is there a way around this?

Share this post


Link to post
Share on other sites

Sorry, this isthe problematic code.

<line startValue='750000' color='ff0000' displayValue='Total' dashed='1' dashGap='2' showOnTop='1'  thickness='2'/>	  

Having the Thickness = 2 is causing the dashes to disappear.  Can you help?

Share this post


Link to post
Share on other sites

Yes - that's the mathematical fix. When you've dashes with thickness 2 but distance (gap) as 1, they're bound to overlap, as the gap and length are pixel values. So, you'll need to increase the gap size.

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