ASP.NET Chart: How to specify color for pie chart?
I have a pie chart and开发者_如何学Python want to specify an exact color for a particular segment of the pie chart.
Which attribute do I use to specify the color dynamically? Thanks.
The color property hangs off the series object.
Chart.Series["xxx"].Color = Color.Red;
精彩评论