Wealth-Lab Framework
Search Framework:
HistoricalDataPoint
Namespace: WealthLab.Core
Parent: Object
Parent: Object
The HistoricalDataPoint class represents a point of historical data on a WealthLab chart. It implements the IChartPoint interface and contains an x-axis bar index and a y-axis value.
Constructors
HistoricalDataPoint
public HistoricalDataPoint(int index, double value)
Creates a new HistoricalDataPoint with its Index assigned to index and its Value assigned to value.
Members
Index
public int Index
Gets or sets the x-axis value, represented as an index into the BarHistory instance being charted.
Value
public double Value
Gets or sets the y-axis value.
XIndex
public int XIndex
Implements IChartPoint. Returns the value of Index.
YValue
public double YValue
Implements IChartPoint. Returns the value of Value.