rafael_reimer 0 Report post Posted November 12, 2007 Hi, Is it possible to create charts with areas that does not have a fill color ? Just border color ? Thanks, Rafael. Quote Share this post Link to post Share on other sites
maximop 0 Report post Posted November 12, 2007 There is no property that will allow you to do this; however, you can do the following to get an Area Chart without fill color and just a border color: Chart1.BorderEffect = BorderEffect_None Chart1.BorderColor = RGB(0, 200, 0) Chart1.Series(0).Color = RGB(255, 255, 255) Chart1.Series(1).Color = RGB(255, 255, 255) Although the BorderEffect and BorderColor properties are exposed in the Series Attributes Collection, setting them from the series' will show the major gridlines which is probably something you don't want; this in term will only give you a chart with the same border color for all series. Quote Share this post Link to post Share on other sites
rafael_reimer 0 Report post Posted November 13, 2007 Thaks, it works. Quote Share this post Link to post Share on other sites