ZedGraph에서 x축을 시간 형식으로 사용하는 방법은 다음과 같습니다. GraphPane pane = graph.GraphPane; LineItem lc1 = pane.AddCurve("datas", points, Color.Black, SymbolType.None); lc1.Line.Width = 3.0f; pane.Legend.IsVisible = false; // x축 : 시간 순서로 사용할 경우 // Unit의 경우 AxisType이 Date일때만 사용함 pane.XAxis.Type = AxisType.Date; pane.XAxis.Title.Text = "Time (HH:mm)"; pane.XAxis.Scale.Format = "HH:mm"; pane.XAxis.Scale.MajorUnit ..