A High-Low-Close series.
export class HighLowCloseSeries extends ChartSeries
High-Low-Close series are used to show variation in stock prices over the course of a day. The Low and High prices are the bottom and top values of the vertical line which is shown at each point, and the Close price is the right tick mark. If the stock closes lower than the close price for the previous time period, the point is painted in red.
A High-Low-Close series requires three measures to be provided. These are measures containing the High, Low and Close prices.
To plot a series within the ChartItem, add the HighLowCloseSeries object to the ChartPane.series collection of a pane where you need to display this series. Use the ChartItem.panes property to access a desired pane.
Initializes a new instance of the HighLowCloseSeries class.
constructor(dataItemProvider: DataDashboardItem, seriesJSON?: any, serializer?: DevExpress.Analytics.Utils.ModelSerializer)
Name | Type | Description |
---|---|---|
dataItemProvider | DataDashboardItem |
Name | Type | Default | Description |
---|---|---|---|
seriesJSON | any | null | |
serializer | ModelSerializer | null | An object used for dashboard deserialization. Do not pass this parameter directly. |
Specifies a measure that contains Close prices.
close: ko.Observable<Measure>
Type | Description |
---|---|
ko.Observable<Measure> | A Measure object that contains Close prices. |
Specifies a measure that contains High prices.
high: ko.Observable<Measure>
Type | Description |
---|---|
ko.Observable<Measure> | A Measure object that contains High prices. |
Specifies a measure that contains Low prices.
low: ko.Observable<Measure>
Type | Description |
---|---|
ko.Observable<Measure> | A Measure object that contains Low prices. |
For internal use.
getInfo(): DevExpress.Analytics.Utils.ISerializationInfoArray
Type | Description |
---|---|
ISerializationInfoArray | An array of objects that provide serialization info. |