ZedGraph設置輔助線 1.一般來說ZedGraph設置參考線可以用 ZedGraph對象.YAxis.MajorGrid.IsVisible = True '水平參考線 ZedGraph對象.XAxis.MajorGrid.IsVisible = True '垂直參考線 2.就是通過在ZedG ...
ZedGraph設置輔助線
1.一般來說ZedGraph設置參考線可以用
ZedGraph對象.YAxis.MajorGrid.IsVisible = True '水平參考線
ZedGraph對象.XAxis.MajorGrid.IsVisible = True '垂直參考線
2.就是通過在ZedGraph上畫個box來假裝輔助線
BoxObj box = new BoxObj(x軸刻度, (y軸刻度), 寬, 高, color,
color);
box.Fill = new Fill(Color.White, color, 45.0F);
box.ZOrder = ZOrder.F_BehindGrid;
ZedGraph對象.GraphPane.GraphObjList.Add(box);