当前位置: 首页>>代码示例>>C#>>正文


C# ZedGraphControl.ZoomOutAll方法代码示例

本文整理汇总了C#中ZedGraph.ZedGraphControl.ZoomOutAll方法的典型用法代码示例。如果您正苦于以下问题:C# ZedGraphControl.ZoomOutAll方法的具体用法?C# ZedGraphControl.ZoomOutAll怎么用?C# ZedGraphControl.ZoomOutAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ZedGraph.ZedGraphControl的用法示例。


在下文中一共展示了ZedGraphControl.ZoomOutAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CreateGraph

        private void CreateGraph(ZedGraphControl zg1, string[] labels, double[] values)
        {
            // get a reference to the GraphPane
            GraphPane myPane = zg1.GraphPane;

            // Set the Titles
            myPane.Title = "My Test Bar Graph";
            myPane.XAxis.Title = "Label";
            myPane.YAxis.Title = "My Y Axis";
            myPane.CurveList.Clear();

            // Generate a red bar with "Curve 1" in the legend
            BarItem myBar = myPane.AddBar("Hits", null, values, Color.Red);
            myBar.Bar.Fill = new Fill(Color.Red, Color.White, Color.Red);

            // Set the XAxis labels
            myPane.XAxis.Scale.TextLabels = labels;
            myPane.XAxis.Type = AxisType.Text;

            // Tell ZedGraph to refigure the
            // axes since the data have changed
            zg1.AxisChange();
            zg1.ZoomOutAll(myPane);
        }
开发者ID:Aether-Hemera,项目名称:DMX-Deck,代码行数:24,代码来源:frmDmxDeck.cs

示例2: chart1_ZoomEvent

        private void chart1_ZoomEvent(ZedGraphControl sender, ZoomState oldState, ZoomState newState)
        {
            if (mouseDownLoc.IsEmpty || mouseUpLoc.IsEmpty)
            {
                return;
            }

            // if zoom rectangle is drawn from right to left, clear all zooming
            if (mouseDownLoc.X > mouseUpLoc.X && mouseDownLoc.Y > mouseUpLoc.Y )
            {
                sender.ZoomOutAll(sender.GraphPane);
                RefreshChart(sender);
            }
        }
开发者ID:usbr,项目名称:Pisces,代码行数:14,代码来源:ZedGraphDataLoader.cs


注:本文中的ZedGraph.ZedGraphControl.ZoomOutAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。