1
我在MS圖表上工作,沒有那麼多的想法。如何將不同顏色應用於ms圖表的數據點?
我已經綁定圖表,我的下一件事是給每個數據點的不同顏色?
我該怎麼做?
我的示例代碼:
foreach (DataPoint pt in ChartRTM.Series["SeriesSeverity"].Points)
{
string sev = pt.YValues[1].ToString(); // this will be your value depending upon which you could set the color
switch (sev)
{
case "I":
pt.Color = Color.Red;
break;
default:
pt.Color = Color.Blue;
break;
}
}
ChartRTM.Series [「Series嚴重性「]。點是零計數? – 2011-12-17 08:10:54