0

目前,我的图表仅显示 x 轴上的索引和 y 轴上的当前索引。现在我在图形函数中添加了额外的参数(NumberOfPoints = 1024,TimeImtervall = 0.0003s)。

我最终想要的是 x 轴显示时间值而不是索引。

但我发现了如何添加日期的唯一示例。

它与“XAxis.Type”和“XAxis.Scale.Format”有关,但我还没有找到如何做到这一点。

4

2 回答 2

0

如果您想要日期/时间,我认为您需要使用XAxis.Type DateDateAsOrdinal. 在这种情况下XAxis.Scale.Format应该可以工作,例如设置为“HH:mm”。

http://zedgraph.sourceforge.net/documentation/default.html

于 2013-08-27T23:39:19.317 回答
0

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:

Customize the zedgraph scale format

于 2013-08-28T09:43:26.477 回答