kristopher Report post Posted October 4, 2007 <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
kristopher Report post Posted October 5, 2007 what was that? Share this post Link to post Share on other sites
kristopher Report post Posted October 8, 2007 bump Can you repeat your solution? Share this post Link to post Share on other sites
Pallav Report post Posted October 9, 2007 Oops. I meant [ line .... dashLen='3' dashGap='4' .. ] Share this post Link to post Share on other sites
kristopher Report post Posted October 9, 2007 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
Pallav Report post Posted October 9, 2007 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
kristopher Report post Posted October 10, 2007 Works. Thanks a lot! Share this post Link to post Share on other sites