当前位置:   article > 正文

WPF 高性能图表ScottPlot的简单使用_wpf scotplot 让每个x轴数据都显示一个网格线

wpf scotplot 让每个x轴数据都显示一个网格线

WPF 高性能图表ScottPlot的简单使用

Github官方
经过实测,性能方面是Livecharts没法比的,但是不支持MVVM双向绑定

<!--图表-->
<Grid x:Name="MeasureChart" Grid.Column="2" Margin="30" >
    <WpfPlot Name="Histogram" />
</Grid>

//画曲线
double[] dataX = new double[curDataList.Length];
double[] dataY = new double[curDataList.Length];
for (int i = 0; i < curDataList.Length; i++)
{
    dataX[i] = startAxisX + i;
    dataY[i] = curDataList[i];
}

//此处为图表基本数据内容的配置
//第一个参数 X轴数据 //第二个参数 Y轴数据 //第三个参数 曲线颜色 //第四个参数 曲线的宽度
//第五个参数 点大小 //第六个参数 点形状 //第七个参数 是否加粗 //第八个参数 Label
Histogram.Plot.AddScatter(dataX, dataY, System.Drawing.Color.FromArgb(curColor.R, curColor.G, curColor.B), 1f, 5f, MarkerShape.none, LineStyle.Solid, number.ToString());
//显示图例
Histogram.Plot.Legend();
//刷新显示
Histogram.Refresh();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/97923
推荐阅读
相关标签
  

闽ICP备14008679号