当前位置:   article > 正文

C# winform图表控件scottplot快速入门设置十字标尺显示刻度及数值_c# chart y轴 刻度值

c# chart y轴 刻度值

C# winform图表控件scottplot快速入门设置十字标尺显示刻度及数值

在这里插入图片描述
Hello大家好我是萌主,在C#项目开发中使用图表控件,我们希望随着鼠标的移动动态显示鼠标位置相应的数值,所以本期课程将带介绍Scottplot图表控件如何来实现这个功能。
在这里插入图片描述

本期课程的要达到的目的:

1、在scottplot中实现通过十字光标线显示当前鼠标位置对应的XY轴对应的数值

环境:

Visual Studio 2019 .net5.0

实现:

添加1个复选框,4个文本显示label

程序源码:

using ScottPlot;

using ScottPlot.Plottable;

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

namespace Scottplot_01

{

public partial class Form1 : Form

{

private readonly Crosshair Crosshair;

public Form1()

{

InitializeComponent();

var plt = formsPlot1.Plot;

// sample data

//X轴数据

double[] xs = DataGen.Consecutive(51);

//Y轴数据

double[] sin = DataGen.Sin(51);

double[] cos = DataGen.Cos(51);

// 2条曲线

plt.AddScatter(xs, sin);

plt.AddScatter(xs, cos);

// plot参数设置

plt.Title("标题");

plt.XLabel("X轴");

plt.YLabel("Y轴");

//添加十字光标线

this.Crosshair = this.formsPlot1.Plot.AddCrosshair(0.0, 0.0);



//缩放进行配置

formsPlot1.Refresh();

}



private void cbZoomable_CheckedChanged(object sender, EventArgs e)

{

//鼠标右键拖拽缩放

this.formsPlot1.Configuration.RightClickDragZoom = this.cbZoomable.Checked;

//鼠标管轮缩放

this.formsPlot1.Configuration.ScrollWheelZoom = this.cbZoomable.Checked;

}

private void cbLockHorizontal_CheckedChanged(object sender, EventArgs e)

{

//锁定水平缩放

this.formsPlot1.Configuration.LockHorizontalAxis = this.cbLockHorizontal.Checked;

}

private void cbLockVertical_CheckedChanged(object sender, EventArgs e)

{

//锁定垂直缩放

this.formsPlot1.Configuration.LockVerticalAxis = this.cbLockVertical.Checked;

}

//鼠标移动时处理十字光标

private void formsPlot1_MouseMove(object sender, MouseEventArgs e)

{

if (CrosshaircheckBox.Checked) {

ValueTuple<double, double> mouseCoordinates = this.formsPlot1.GetMouseCoordinates();

double coordinateX = mouseCoordinates.Item1;

double coordinateY = mouseCoordinates.Item2;

this.XPixelLabel.Text = string.Format("{0:0.000}", e.X);

this.YPixelLabel.Text = string.Format("{0:0.000}", e.Y);

this.XCoordinateLabel.Text = string.Format("{0:0.00000000}", coordinateX);

this.YCoordinateLabel.Text = string.Format("{0:0.00000000}", coordinateY);

this.Crosshair.X = coordinateX;

this.Crosshair.Y = coordinateY;

}



//this.XPixelLabel.Location = new System.Drawing.Point(e.X, e.Y);

//如果设置十字光标线为不显示数值就不显示了

if (!CrosshaircheckBox.Checked)

{

this.XPixelLabel.Text = "";

this.YPixelLabel.Text = "";

this.XCoordinateLabel.Text = "";

this.YCoordinateLabel.Text = "";

}

this.formsPlot1.Refresh(false, false);

}

//十字功能复选框改变执行任务

private void CrosshaircheckBox_CheckedChanged(object sender, EventArgs e)

{



if (CrosshaircheckBox.Checked) {

this.Crosshair.VerticalLine.IsVisible = true;

this.Crosshair.HorizontalLine.IsVisible = true;

}

else{

this.Crosshair.VerticalLine.IsVisible = false;

this.Crosshair.HorizontalLine.IsVisible = false;

}

this.formsPlot1.Refresh(false, false);

}

//鼠标进入图表中执行的任务

private void formsPlot1_MouseEnter(object sender, EventArgs e)

{

if (CrosshaircheckBox.Checked)

{

this.Crosshair.VerticalLine.IsVisible = true;

this.Crosshair.HorizontalLine.IsVisible = true;

}

else

{

this.Crosshair.VerticalLine.IsVisible = false;

this.Crosshair.HorizontalLine.IsVisible = false;

}



this.formsPlot1.Refresh(false, false);

}

//鼠标离开图表执行的任务

private void formsPlot1_MouseLeave(object sender, EventArgs e)

{

this.Crosshair.VerticalLine.IsVisible = false;

this.Crosshair.HorizontalLine.IsVisible = false;

this.formsPlot1.Refresh(false, false);

}

}

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/97928
推荐阅读
相关标签
  

闽ICP备14008679号