Struct DataPoint
A simple storage struct to maintain an individual sampling of data. This only contains two data values in order to reduce to memory load for large datasets. (e.g., no Tag or Z property)
Inherited Members
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public struct DataPoint
Fields
| Improve this Doc View SourceX
The X value for the point, stored as a double type.
Declaration
public double X
Field Value
Type | Description |
---|---|
Double |
Y
The Y value for the point, stored as a double type.
Declaration
public double Y
Field Value
Type | Description |
---|---|
Double |