Class PointPairCV
A simple instance that stores a data point (X, Y, Z). This differs from a regular PointPair in that it maps the ColorValue property to an independent value. That is, ColorValue and Z are not related (as they are in the PointPair).
Inherited Members
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public class PointPairCV : PointPair, ISerializable, ICloneable
Constructors
| Improve this Doc View SourcePointPairCV(Double, Double, Double)
Creates a point pair with the specified X, Y, and base value.
Declaration
public PointPairCV(double x, double y, double z)
Parameters
Type | Name | Description |
---|---|---|
Double | x | This pair's x coordinate. |
Double | y | This pair's y coordinate. |
Double | z | This pair's z or lower dependent coordinate. |
PointPairCV(SerializationInfo, StreamingContext)
Constructor for deserializing objects
Declaration
protected PointPairCV(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | A SerializationInfo instance that defines the serialized data |
StreamingContext | context | A StreamingContext instance that contains the serialized data |
Fields
| Improve this Doc View Sourceschema3
Current schema value that defines the version of the serialized file
Declaration
public const int schema3 = 11
Field Value
Type | Description |
---|---|
Int32 |
Properties
| Improve this Doc View SourceColorValue
The ColorValue property. This is used with the GradientByColorValue option.
Declaration
public override double ColorValue { get; set; }
Property Value
Type | Description |
---|---|
Double |
Overrides
Methods
| Improve this Doc View SourceGetObjectData(SerializationInfo, StreamingContext)
Populates a SerializationInfo instance with the data needed to serialize the target object
Declaration
[SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | A SerializationInfo instance that defines the serialized data |
StreamingContext | context | A StreamingContext instance that contains the serialized data |