rafael_reimer Posted November 12, 2007 Report Share 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 Link to comment Share on other sites More sharing options...
maximop Posted November 12, 2007 Report Share 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 Link to comment Share on other sites More sharing options...
rafael_reimer Posted November 13, 2007 Author Report Share Posted November 13, 2007 Thaks, it works. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.