无法使用 NumericUpDown 更新 ZedGraph 中的 YAxis

发布于 2024-12-13 19:16:08 字数 778 浏览 1 评论 0原文

我正在尝试增加/减少 ZedGraph 中 Y 轴的最大值和最小值。当我创建表单时,图形会正常绘制,但在第一次绘制后,我想使用 2 numericUpDown 控件更改 Y 轴的比例...但它永远不会更新:(

这是我正在使用的代码:

private void CreateGraph()
{
    // Set the Titles
    myPane.Title.Text = gs.Title;
    myPane.XAxis.Title.Text = gs.xTitle;
    myPane.YAxis.Title.Text = gs.yTitle;

    //Add data
    myPane.AddCurve(gs.LineLabel, gs.RawData, gs.LineColor);

    zedGraphControl1.AxisChange();
}


private void nudYMax_ValueChanged(object sender, EventArgs e)
{
    this.zedGraphControl1.GraphPane.YAxis.Scale.Max = (double)nudYMax.Value;
    zedGraphControl1.AxisChange();
}

private void nudYMin_ValueChanged(object sender, EventArgs e)
{
    this.myPane.YAxis.Scale.Min = (double)nudYMin.Value;
    zedGraphControl1.AxisChange();
}

I am trying to increase/decrease Max and Min value of Y axis in a ZedGraph. When I create the form, the graph draws as normal, but after first draw I want to change the scale of Y axis using 2 numericUpDown controls...but it never updates :(

Here is the code I am using:

private void CreateGraph()
{
    // Set the Titles
    myPane.Title.Text = gs.Title;
    myPane.XAxis.Title.Text = gs.xTitle;
    myPane.YAxis.Title.Text = gs.yTitle;

    //Add data
    myPane.AddCurve(gs.LineLabel, gs.RawData, gs.LineColor);

    zedGraphControl1.AxisChange();
}


private void nudYMax_ValueChanged(object sender, EventArgs e)
{
    this.zedGraphControl1.GraphPane.YAxis.Scale.Max = (double)nudYMax.Value;
    zedGraphControl1.AxisChange();
}

private void nudYMin_ValueChanged(object sender, EventArgs e)
{
    this.myPane.YAxis.Scale.Min = (double)nudYMin.Value;
    zedGraphControl1.AxisChange();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九局 2024-12-20 19:16:08

自从我使用 ZedGraph 库以来已经很久了,但如果我没记错的话,你必须

    zedGraphControl1.Refresh();

在轴更改后调用。

It's a long time ago since i worked with the ZedGraph library but if I remember correctly you have to call

    zedGraphControl1.Refresh();

after your axis change.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文