The basic PointPair class holds three data values (X, Y, Z). This
class extends the basic PointPair to contain five data values (X, Y, Z, Open, Close).
| C# | Visual Basic | Visual C++ |
[SerializableAttribute] public class StockPt : PointPair, ISerializable
<SerializableAttribute> _ Public Class StockPt _ Inherits PointPair _ Implements ISerializable
[SerializableAttribute] public ref class StockPt : public PointPair, ISerializable
| All Members | Constructors | Methods | Properties | Fields | |
| Icon | Member | Description |
|---|---|---|
| StockPtStockPtNew()() |
Default Constructor
| |
| StockPtStockPtNew(Double, Double, Double, Double, Double, Double) |
Construct a new StockPt from the specified data values
| |
| StockPtStockPtNew(Double, Double, Double, Double, Double, Double, String) |
Construct a new StockPt from the specified data values including a Tag property
| |
| StockPtStockPtNew(StockPt) |
The StockPt copy constructor.
| |
| StockPtStockPtNew(PointPair) |
The StockPt copy constructor.
| |
| Clone()() |
Typesafe, deep-copy clone method.
(Inherited from PointPair.) | |
| Close |
This closing value
| |
| ColorValue |
The ColorValue property. This is used with the
GradientByColorValue option.
(Overrides PointPair.ColorValue.) | |
| Date |
Map the Date property to the X value
| |
| Equals(Object) |
Compare two PointPair objects for equality. To be equal, X, Y, and Z
must be exactly the same between the two objects.
(Inherited from PointPair.) | |
| Finalize()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode()() |
Return the HashCode from the base class.
(Inherited from PointPair.) | |
| GetObjectData(SerializationInfo, StreamingContext) |
Populates a SerializationInfo instance with the data needed to serialize the target object
(Overrides PointPair.GetObjectData(SerializationInfo, StreamingContext).) | |
| GetType()() | Gets the Type of the current instance. (Inherited from Object.) | |
| High |
Map the high property to the Y value
| |
| IsInvalid |
Readonly value that determines if either the X or the Y
coordinate in this PointPair is an invalid (not plotable) value.
It is considered invalid if it is missing (equal to System.Double.Max),
Infinity, or NaN.
(Inherited from PointPairBase.) | |
| IsInvalid3D |
Readonly value that determines if either the X, Y, or Z
coordinate in this PointPair is an invalid (not plotable) value.
It is considered invalid if it is missing (equal to System.Double.Max),
Infinity, or NaN.
(Inherited from PointPair.) | |
| IsInvalid5D |
Readonly value that determines if either the Date, Close, Open, High, or Low
coordinate in this StockPt is an invalid (not plotable) value.
It is considered invalid if it is missing (equal to System.Double.Max),
Infinity, or NaN.
| |
| IsMissing |
Readonly value that determines if either the X or the Y
coordinate in this PointPair is a missing value.
(Inherited from PointPairBase.) | |
| Low |
Map the low property to the Z value
| |
| LowValue |
The "low" value for this point (lower dependent-axis value).
This is really just an alias for Z.
(Inherited from PointPair.) | |
| MemberwiseClone()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Open |
This opening value
| |
| schema3 |
Current schema value that defines the version of the serialized file
| |
| ICloneable..::Clone()() |
Implement the ICloneable interface in a typesafe manner by just
calling the typed version of Clone()() (Inherited from PointPair.) | |
| Tag |
A tag object for use by the user. This can be used to store additional
information associated with the PointPair. ZedGraph never
modifies this value, but if it is a String type, it
may be displayed in a ToolTip
within the ZedGraphControl object.
(Inherited from PointPair.) | |
| ToString(Boolean) |
Format this StockPt value using the default format. Example: "( 12.345, -16.876 )".
The two double values are formatted with the "g" format type.
(Overrides PointPair.ToString(Boolean).) | |
| ToString(String, Boolean) |
Format this PointPair value using a general format string.
Example: a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
If
is true, then the third all coordinates are shown.
(Overrides PointPair.ToString(String, Boolean).) | |
| ToString(String, String, String) |
Format this PointPair value using different general format strings for the X, Y, and Z values.
Example: a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
(Inherited from PointPair.) | |
| ToString(String) |
Format this PointPair value using a general format string.
Example: a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
(Inherited from PointPairBase.) | |
| ToString(String, String) |
Format this PointPair value using different general format strings for the X and Y values.
Example: a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
The Z value is not displayed (see ToString(String, String, String)).
(Inherited from PointPairBase.) | |
| Vol |
This daily trading volume
| |
| X |
This PointPair's X coordinate
(Inherited from PointPairBase.) | |
| Y |
This PointPair's Y coordinate
(Inherited from PointPairBase.) | |
| Z |
This PointPair's Z coordinate. Also used for the lower value (dependent axis)
for HiLowBarItem and ErrorBarItem charts.
(Inherited from PointPair.) |
| Object | |||
| PointPairBase | |||
| PointPair | |||
| StockPt | |||
