Jump to content
Software FX Community

Areas without fill


rafael_reimer

Recommended Posts

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.

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...