Miguel Moura
Miguel Moura

Reputation: 39484

Microsoft Chart ... Make Transparent

I am using Microsoft Charting to display two series.

Is it possible to make one of the series transparent to show the series behind?

Something like the following:

http://mvc.syncfusion.com/demos/ui/chart/ChartType/AreaChart

Upvotes: 0

Views: 143

Answers (1)

zeFrenchy
zeFrenchy

Reputation: 6591

Simply define the Series color with an alpha component

chart.Series["Default"].Color = Color.FromArgb(120, 0, 155, 155);

Upvotes: 1

Related Questions