|
If you have such a curve drawing control, you should make it yourself
Generally, you should first create a PictureBox, and then draw the curve you want in PictureBox.
The method of drawing a graph generally determines the information of the x and y axes, such as the value of the axis apex, the major and minor scales, etc., and then the coordinates of each point can be analyzed and drawn in the PictureBox.
This also contains some questions
1. Such as curve fitting: polyline, least square method, spline, etc.
2. Whether the curve should be adaptive in real time, which means that the curve always occupies 2/3 of the vertical axis, etc.
Regarding the oscilloscope display, you can set up a buffer queue, such as 100 points. If a new point enters, the last point is discharged. The queue always maintains 100 points, so that it can be made into an oscilloscope-like function
Regarding storage, you can store it as a Bitmap so that users can use it for analysis.
Regarding the storage of excel, can all the data of these points be stored in excel? |
|