既然用到了chart控件,那么这个图像就有各种不确定的数据以及多条曲线
一、Y轴的自适应
关于Y轴的自适应只需要在设置图表时将最大值和最小值改为一下代码即可
1
| this.chart1.ChartAreas[0].AxisY.IsStartedFromZero = false;
|
二、多条线的展示(核心代码如下)
1 2 3 4 5 6 7 8 9 10 11 12 13
| this.chart1.Series[0].Color = Color.Blue; this.chart1.Titles[0].Text = string.Format("这是一个测试表"); this.chart1.Series[0].ChartType = SeriesChartType.Line; this.chart1.Series[0].ChartType = SeriesChartType.FastLine; this.chart1.Series[0].Points.Clear(); Series series2 = new Series("S2"); this.chart1.Series.Add(series2); this.chart1.Series[1].Color = Color.Red; this.chart1.Series[1].ChartType = SeriesChartType.Spline; this.chart1.Series[1].ChartType = SeriesChartType.FastLine; this.chart1.Series[1].Points.Clear();
|
这是对差chart产生两个数据的设定,除此之外,还需要对数据更新时设置,将二者分开设置(在这里不进行详细的说明了,可以直接复制对只有一个线的数据更新)
相关链接
- C#的chart控件生成的波形图Y轴自适应
=================我是分割线=================
欢迎到公众号来唠嗑: