我目前正在模塊上創建圖表以顯示數據。 我使用System.Windows.Forms.DataVisualization.Charting.Chart
。我無法爲我的帶狀線的大小獲取正確的值
我有兩條線,即使我給他們的StripWidth
參數的值相同:
在這裏,我們MaxY
在6000,平均在2300
和門檻在2500
// We can't use a fixed size because if the y axis is too high or too small it may look too big or too small
this.chart1.ChartAreas[0].Axes[1].StripLines[0].StripWidth = maxY/100;
this.chart1.ChartAreas[0].Axes[1].StripLines[1].StripWidth = maxY/100;
// add the striplines
this.chart1.ChartAreas[0].Axes[1].StripLines[0].Interval = 0;
this.chart1.ChartAreas[0].Axes[1].StripLines[1].Interval = 0;
this.chart1.ChartAreas[0].Axes[1].StripLines[0].IntervalOffset = average;
this.chart1.ChartAreas[0].Axes[1].StripLines[1].IntervalOffset = threshold;
他們往往最終與不同的大小,這是微妙的,但我可以看到它,我不明白爲什麼發生。
它們與我的尺寸相同 – Steve