ASP.NET Charting Control Transparency
Try assigning the color of the series to a color with alpha transparency, like so:
Chart1.Series(0).Color = Color.FromArgb(128, 255, 0, 0) //transparent red
Taken from this thread.
Try assigning the color of the series to a color with alpha transparency, like so:
Chart1.Series(0).Color = Color.FromArgb(128, 255, 0, 0) //transparent red
Taken from this thread.