目前,我的图表仅显示 x 轴上的索引和 y 轴上的当前索引。现在我在图形函数中添加了额外的参数(NumberOfPoints = 1024,TimeImtervall = 0.0003s)。
我最终想要的是 x 轴显示时间值而不是索引。
但我发现了如何添加日期的唯一示例。
它与“XAxis.Type”和“XAxis.Scale.Format”有关,但我还没有找到如何做到这一点。
如果您想要日期/时间,我认为您需要使用XAxis.Type Date
或DateAsOrdinal
. 在这种情况下XAxis.Scale.Format
应该可以工作,例如设置为“HH:mm”。
Try this:
private void Form1_Load(object sender, EventArgs e)
{
GraphPane myPane = zedGraphControl1.GraphPane;
myPane.XAxis.Title.Text = "Time(sec)";
myPane.XAxis.Scale.Format ="f4";
myPane.XAxis.Type = AxisType.Linear;
myPane.XAxis.Scale.Min = 0;
myPane.XAxis.Scale.Max = 0.3072;
myPane.AxisChange();
zedGraphControl1.Invalidate();
}
You need to zoom in to see the graph in milli
& micro
seconds.
Edit: