MSCHART with a transparent background
问题 Any whay to make the background transparent of the MSCHART? thank's 回答1: You need to set the Chart background colour AND the ChartArea colour. Chart c = new Chart(); c.BackColor = Color.Transparent; c.ChartAreas.Add(new ChartArea("ChartArea1")); c.ChartAreas[0].BackColor = Color.Transparent; 回答2: maybe this help you in your .aspx file where your chart code is, look for the asp:ChartArea tag. then add BackColor = "Transparent". <asp:ChartArea Name="ChartArea1" BackColor="Transparent" </asp