請參閱圖表更改圖表中的圖例文字?
現在,我要換傳說的文本(不顯示百分比值)相同的一系列數據xValues,比如我的例子:倫敦,東京,巴黎,......(仍然保留百分比值)。
你知道該怎麼做嗎?
我用下面的代碼:
int[] yValues = { 50, 20, 10, 20 };
string[] xValues = { "London", "Paris", "Newyork", "Tokyo"};
myChart.Series["Default"].Points.DataBindXY(xValues, yValues);
myChart.Series[0].Label = "#PERCENT{P2}";
這沒有爲我工作,我添加像這樣的數據'Series1.Points.AddXY(「付費」,8500)' – Smith