2

我刚刚开始考虑可能将 MSChart 控件用于 .Net 3.5 的项目,该项目将很快开始。该项目的要求之一是用户能够在必要时放大图表以更清楚地看到小数据点。

我看过一些教程,要么没有提到缩放,要么只是提供一些关于如何启用它的简短信息,并且似乎假设使用它是如此明显以至于不需要解释。

我创建了一个快速测试项目,将控件添加到表单中,然后在默认系列中添加了几个点。然后我进入 ChartAreas 集合并确保在默认 ChartArea 中,所有 Axis 成员的 ScaleView 属性中的 Zoomable 属性设置为 True。

当我运行应用程序时,我的图表显示正确,但我无法理解任何放大它的方法。我试过点击它、双击、滚轮、ctrl-scroll wheel、ctrl-+和许多其他东西。

我显然错过了一些东西。有人可以告诉我我做错了什么,如何启用缩放 UI,以及我如何实际使用缩放 UI?

我在 Windows 7 上,使用 VS2012。

谢谢你。

[编辑:修复了标题中的愚蠢拼写错误]

4

1 回答 1

9

执行以下操作应该允许您使用鼠标左键单击并拖动来缩放:

private void ZoomToggle(bool Enabled)
{
    // Enable range selection and zooming end user interface
    this.cwSubplot.ChartAreas(0).CursorX.IsUserEnabled = Enabled;
    this.cwSubplot.ChartAreas(0).CursorX.IsUserSelectionEnabled = Enabled;
    this.cwSubplot.ChartAreas(0).CursorX.Interval = 0;
    this.cwSubplot.ChartAreas(0).AxisX.ScaleView.Zoomable = Enabled;
    this.cwSubplot.ChartAreas(0).AxisX.ScrollBar.IsPositionedInside = true;
    this.cwSubplot.ChartAreas(0).AxisX.ScrollBar.ButtonStyle = System.Windows.Forms.DataVisualization.Charting.ScrollBarButtonStyles.SmallScroll;
    this.cwSubplot.ChartAreas(0).AxisX.ScaleView.SmallScrollMinSize = 0;

    this.cwSubplot.ChartAreas(0).CursorY.IsUserEnabled = Enabled;
    this.cwSubplot.ChartAreas(0).CursorY.IsUserSelectionEnabled = Enabled;
    this.cwSubplot.ChartAreas(0).CursorY.Interval = 0;
    this.cwSubplot.ChartAreas(0).AxisY.ScaleView.Zoomable = Enabled;
    this.cwSubplot.ChartAreas(0).AxisY.ScrollBar.IsPositionedInside = true;
    this.cwSubplot.ChartAreas(0).AxisY.ScrollBar.ButtonStyle = System.Windows.Forms.DataVisualization.Charting.ScrollBarButtonStyles.SmallScroll;
    this.cwSubplot.ChartAreas(0).AxisY.ScaleView.SmallScrollMinSize = 0;
    if (Enabled == false) {
        //Remove the cursor lines
        this.cwSubplot.ChartAreas(0).CursorX.SetCursorPosition(double.NaN);
        this.cwSubplot.ChartAreas(0).CursorY.SetCursorPosition(double.NaN);
    }
}

您要缩放this.cwSubplot的对象在哪里。Chart

于 2013-09-30T17:06:51.160 回答