1. 程式人生 > >ZedGraph 自定義 X軸 Y軸 標註 畫虛線

ZedGraph 自定義 X軸 Y軸 標註 畫虛線

ZedGraph 版本 5.1.51.

注:低版本的不能進行這兩個操作

1. 自定義x軸標註

 zedGraphControl1.GraphPane.XAxis.ScaleFormatEvent += new Axis.ScaleFormatHandler(XAxis_ScaleFormatEvent); 
string XAxis_ScaleFormatEvent(GraphPane pane, Axis axis, double val, int index)
 {
//根據 val值 返回你需要的 string
 return ((index).ToString());
 }



2 畫虛線

 zedGraphControl1.GraphPane.AddCurve("fd", list, Color.Red, SymbolType.VDash);
 ((LineItem)(zedGraphControl1.GraphPane.CurveList[0])).Line.StepType = StepType.ForwardSegment; //更改Line.StepType