I am trying to show a pie chart as transparent. Ideally, this should look like the 3rd graph on the left of this page ( link ).
So far, I have been trying to set transparency on the chart.
<asp:ChartArea Name="ChartArea1" BackColor="64, 165, 191, 228" BackGradientStyle="TopBottom" BackSecondaryColor="Transparent" BorderColor="64, 64, 64, 64" ShadowColor="Transparent">
I also tried installing it from codebehind:
protected void pieChart_Customize(object sender, EventArgs e) { foreach (Series s in pieChart.Series) { s.Color = Color.FromArgb(128, s.Color); } }
However, none of these approaches work. Has anyone been able to set transparency in this type of chart management?
source share