我正在生成圓環圖,但某些情況下線標籤百分比已關閉,並且在某些情況下百分號已關閉。C#中的標籤餅圖/ Dougnhut圖表#
如何解決這個問題?
- 代碼
chart.Series["Data"].ChartType = SeriesChartType.Doughnut;
chart.Series["Data"]["PieLineColor"] = "LightGray";
chart.Series["Data"]["DoughnutRadius"] = "30";
chart.Series["Data"]["PieStartAngle"] = "270";
chart.ChartAreas[0].InnerPlotPosition.Height = 90;
chart.ChartAreas[0].InnerPlotPosition.Width = 90;
chart.ChartAreas[0].Area3DStyle.Enable3D = true;
chart.ChartAreas[0].Area3DStyle.Inclination = 0;
chart.Series["Data"].Label = "#PERCENT{P0}";
chart.Series["Data"].LegendText = "#VALX";
chart.Series["Data"].Font = new Font("Arial", 16.0f, FontStyle.Bold);
托馬斯試圖說的是,請向我們展示創建圖表的代碼,以便我們確實有機會幫助您解決問題。你可以閱讀關於[mcve]的內容,以更好地瞭解什麼可以幫助他人幫助你。問題 – DrewJordan
添加代碼 – Daniel