HighLowCloseSeries Class
A High-Low-Close series.
Declaration
export class HighLowCloseSeries extends ChartSeries
Remarks
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.
Inherited Members
Inheritance
constructor(dataItemProvider)
Initializes a new instance of the HighLowCloseSeries
class.
Declaration
constructor(
dataItemProvider: DevExpress.Dashboard.Model.DataDashboardItem,
seriesJSON?: any,
serializer?: DevExpress.Analytics.Utils.ModelSerializer
)
Parameters
Name | Type | Description |
---|---|---|
dataItemProvider | DataDashboardItem | |
seriesJSON | any | |
serializer | ModelSerializer | An object used for dashboard deserialization. Do not pass this parameter directly. |
Properties
close Property
Specifies a measure that contains Close prices.
Declaration
close: ko.Observable<DevExpress.Dashboard.Model.Measure>
Property Value
Type | Description |
---|---|
Observable<Measure> | A Measure object that contains Close prices. |
high Property
Specifies a measure that contains High prices.
Declaration
high: ko.Observable<DevExpress.Dashboard.Model.Measure>
Property Value
Type | Description |
---|---|
Observable<Measure> | A Measure object that contains High prices. |
low Property
Specifies a measure that contains Low prices.
Declaration
low: ko.Observable<DevExpress.Dashboard.Model.Measure>
Property Value
Type | Description |
---|---|
Observable<Measure> | A Measure object that contains Low prices. |