I'm working with the ASP.NET Charting Library and I've got it generating a pie chart but I'm having a problem configuring it to generate the pie chart with semi-transparent slices. If you look at the image you'll see what I'm talking about. Of the 4 pie charts the top 2 and the bottom left chart have the pie slice transparency I'm talking about.

Charting Control Image

What settings of the chart do I tweak to render the slices with a certain % of transparency?

Thanks!

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

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.

link|improve this answer
@Matthew: Thank you! That's it! – Ryan Mar 17 '10 at 19:50
+1 for the reference – Ryan Mar 17 '10 at 19:51
feedback

This the ultimate solution for both cases - one color per series or palette charts:

myChart.ApplyPaletteColors();

foreach (var series in myChart.Series)
{
    foreach (var point in series.Points)
    {
        point.Color = Color.FromArgb(220, point.Color);
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.