我的编程空间,编程开发者的网络收藏夹
学习永远不晚

c# chart缩放,局部放大问题

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

c# chart缩放,局部放大问题

c# chart缩放,局部放大

效果:

左键划选放大区域,右键恢复

        /// <summary>
        /// 初始化,传入要进行初始化的chart
        /// </summary>
        /// <param name="chart1"></param>
        public static void InitChart (System.Windows.Forms.DataVisualization.Charting.Chart chart1)
        {
            //开启缩放功能
            chart1.ChartAreas[0].CursorX.Interval = 0;
            chart1.ChartAreas[0].CursorX.IsUserEnabled = true;
            chart1.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
            chart1.MouseClick += new System.Windows.Forms.MouseEventHandler(chart_MouseClick);
        }
 
        //右键恢复缩放
        static void chart_MouseClick(object sender, MouseEventArgs e)
        {
            Chart chart1 = sender as Chart;
            //右键恢复事件
            if (e.Button == MouseButtons.Right)
            {
                chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset(0);
            }
        }

放大

仅针对x轴(y轴同理)

chartArea1.CursorX.IsUserEnabled = true;
chartArea1.CursorX.IsUserSelectionEnabled = true;

缩小

chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset();
  • ZoomReset(0); —— 撤销所有放大动作
  • ZoomReset(1); —— 撤销上一次放大动作

设置滚动条宽度

chart1.ChartAreas[0].AxisX.ScrollBar.Size = 5;

以上所有方法也可以在chart属性里直接进行设置

获取选区坐标

Console.WriteLine(chart1.ChartAreas[0].AxisX.ScaleView.ViewMinimum);//当前显示范围最小坐标
Console.WriteLine(chart1.ChartAreas[0].AxisX.ScaleView.ViewMaximum);//当前显示范围最大坐标

c# chart表格

  • series1属性中XAxisType属性值设置为:Primary
  • series2属性中XAxisType属性值设置为:Secondary          

添加series会导致图表预览不可用

设置间隔与小数点

网格刻度

 #region 表格参数设置
            //ChartArea chartArea = chart1.ChartAreas[0];
 
            //表格标题内容
            Title title = new Title();
            title.Font = new System.Drawing.Font("宋体", 12F);
            title.Text = "压机曲线波动分析";
            chart1.Titles.Add(title);
 
            //设置坐标轴标题
            chart1.ChartAreas[0].AxisX.Title = "位 移 / mm ";
            chart1.ChartAreas[0].AxisY.Title = "压  力 / Kg ";
 
            //X,Y轴的最大值最小值
            chart1.ChartAreas[0].AxisX.Minimum = 0;
            chart1.ChartAreas[0].AxisX.Maximum = 100;
            chart1.ChartAreas[0].AxisY.Minimum = 0;
            chart1.ChartAreas[0].AxisY.Maximum = 200;
 
            // 设置X,Y的坐标间距
            chart1.ChartAreas[0].AxisX.Interval = 1;
            chart1.ChartAreas[0].AxisY.Interval = 5;
 
 
            //设置坐标轴标题的字体
            chart1.ChartAreas[0].AxisX.TitleFont = new System.Drawing.Font("宋体", 12F);
            chart1.ChartAreas[0].AxisY.TitleFont = new System.Drawing.Font("宋体", 12F);
 
            //设置坐标轴栅格是否可见
            chart1.ChartAreas[0].AxisX.MajorGrid.Enabled = true;
            chart1.ChartAreas[0].AxisY.MajorGrid.Enabled = true;
 
            //设置网格线  
            chart1.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Gainsboro;   //颜色
            chart1.ChartAreas[0].AxisX.MajorGrid.Interval = 10;                 //网格间隔
            chart1.ChartAreas[0].AxisX.MinorGrid.Interval = 10;
            chart1.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Gainsboro;
            chart1.ChartAreas[0].AxisY.MajorGrid.Interval = 20;
            chart1.ChartAreas[0].AxisY.MinorGrid.Interval = 20;
 
            放大表格
            chart1.ChartAreas[0].AxisX.ScaleView.Zoom(2, 3);
            chart1.ChartAreas[0].AxisX.ScaleView.Zoomable = false;
            chart1.ChartAreas[0].AxisX.ScaleView.Size = 20;
 
             Zoom into the X axis
             Enable range selection and zooming end user interface
            chart1.ChartAreas[0].CursorX.IsUserEnabled = true;
            chart1.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
            chart1.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
 
            //将滚动内嵌到坐标轴中
            chart1.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = true;
            chart1.ChartAreas[0].AxisY.ScrollBar.IsPositionedInside = true;
 
 
 
            #endregion
 
 
            #region 各个曲线参数设置
            //曲线类型
            chart1.Series[0].ChartType = SeriesChartType.Spline;
            chart1.Series[1].ChartType = SeriesChartType.Spline;
            chart1.Series[10].ChartType = SeriesChartType.Spline;
 
            // 曲线 线宽像素
            chart1.Series[0].BorderWidth = 1;
            chart1.Series[1].BorderWidth = 1;
            chart1.Series[10].BorderWidth = 3;
 
            // 曲线的颜色
            chart1.Series[10].Color = System.Drawing.Color.Red;
            chart1.Series[4].Color = System.Drawing.Color.Green;
            chart1.Series[5].Color = System.Drawing.Color.RoyalBlue;
 
            //右上角的曲线名称是否显示
            chart1.Series[0].IsVisibleInLegend = true;
            chart1.Series[1].IsVisibleInLegend = true;
            chart1.Series[10].IsVisibleInLegend = true;
 
            //右上角的曲线名称
 
 
            chart1.Series[0].LegendText = "随机抽取曲线1";
            chart1.Series[1].LegendText = "随机抽取曲线2";
            chart1.Series[2].LegendText = "随机抽取曲线3";
            chart1.Series[3].LegendText = "随机抽取曲线4";
            chart1.Series[4].LegendText = "随机抽取曲线5";
            chart1.Series[5].LegendText = "随机抽取曲线6";
            chart1.Series[6].LegendText = "随机抽取曲线7";
            chart1.Series[7].LegendText = "随机抽取曲线8";
            chart1.Series[8].LegendText = "随机抽取曲线9";
            chart1.Series[9].LegendText = "随机抽取曲线10";
            chart1.Series[10].LegendText = "Average";
 
            //名称的悬浮备注
            chart1.Series[10].LegendToolTip = "此乃10个随机曲线的平均值曲线";
            chart1.Series[0].LegendToolTip = "随机抽取曲线1备注";
            chart1.Series[1].LegendToolTip = "备注2";
 
            //坐标Y值是否显示在图表中
            //chart1.Series[0].IsValueShownAsLabel = true;
            //chart1.Series[1].IsValueShownAsLabel = true;
            //chart1.Series[2].IsValueShownAsLabel = true;
            //chart1.Series[3].IsValueShownAsLabel = true;
            //chart1.Series[4].IsValueShownAsLabel = true;
            chart1.Series[10].IsValueShownAsLabel = true;
 
            //chart1.Series.Clear();     使表格GGG
            //chart1.Series.Dispose();
            #endregion
  //设置网格线
            chartDemo1.ChartAreas[0].AxisX.MajorGrid.LineColor = Color.Gray;
            chartDemo1.ChartAreas[0].AxisX.MajorGrid.Interval = 500;//网格间隔
            chartDemo1.ChartAreas[0].AxisX.MinorGrid.Interval = 500;
            chartDemo1.ChartAreas[0].AxisX.MajorGrid.LineDashStyle = ChartDashStyle.Dash; //设置网格类型为虚线
            chartDemo1.ChartAreas[0].AxisY.MajorGrid.LineColor = Color.Gray;
            chartDemo1.ChartAreas[0].AxisY.MajorGrid.Interval = 4;
            chartDemo1.ChartAreas[0].AxisY.MinorGrid.Interval = 4;
            chartDemo1.ChartAreas[0].AxisY.MajorGrid.LineDashStyle = ChartDashStyle.Dash;//网格Y轴线类型
            this.chartDemo1.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
            //    this.chartDemo1.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent;
//滑轮设置  
 chartDemo1.ChartAreas[0].AxisX.LabelStyle.Format = "HH:mm:ss"; 
            chartDemo1.ChartAreas[0].AxisX.ScaleView.Size = 8;
            chartDemo1.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = true;
            chartDemo1.ChartAreas[0].AxisX.ScrollBar.Enabled = true;
   private void chart1_MouseEnter(object sender, MouseEventArgs e)
        {
            if (e.Delta > 0)//鼠标向上
            {
                if (chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.Size < 100)//判断显示的最大数值
                {
                    // chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.Size += 2;//+=5---滚动一次显示5个
                    chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.Position += 2;
                }
            }
            else//鼠标向下滚动
            {
                if (chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.Size > 1)
                {
                    // chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.Size -= 2;// - = 5---滚动一次减小显示5个
                    chart1.ChartAreas["ChartArea1"].AxisX.ScaleView.Position -= 2;
                }
              
            }
        }
        private void chart1_MouseEnter(object sender, EventArgs e)//当鼠标移动到控件上-发生的事件
        {
            MouseWheel += new MouseEventHandler(chart1_MouseEnter);//调用滚轮事件
        }

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

c# chart缩放,局部放大问题

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

c# chart缩放,局部放大问题

这篇文章主要介绍了c# chart缩放,局部放大问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
2023-03-01

c# chart缩放和局部放大问题怎么解决

今天小编给大家分享一下c# chart缩放和局部放大问题怎么解决的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。c# char
2023-07-05

C# Chart折线图使用鼠标滚轮放大、缩小和平移曲线的方法

这篇“C# Chart折线图使用鼠标滚轮放大、缩小和平移曲线的方法”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“C# Cha
2023-07-02

android图像绘制(二)画布上放大缩小问题

android中图像在画布上放大缩小时,图像的边框大小没有改变! 原图如下:放大后:原来图片的边框没有改变,位置依旧!所以如果要放置图片的位置的话,就需要做相应的位置移动才可以! 采用如下代码(全屏放置图片): 代码如下: Matrix m
2022-06-06

vue实现图片预览放大以及缩小问题

这篇文章主要介绍了vue实现图片预览放大以及缩小问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
2023-01-14

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录