StockType Enum
Lists the values used to specify whether Open and Close markers are displayed within a series view of the stock type.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
[TypeConverter(typeof(EnumTypeConverter))]
public enum StockType
Members
Name | Description |
---|---|
Both
|
Specifies that both Open and Close price values are displayed. |
Open
|
Specifies that only Open price values are displayed. |
Close
|
Specifies that only Close price values are displayed. |
Related API Members
The following properties accept/return StockType values:
Library | Related API Members |
---|---|
Cross-Platform Class Library | StockDrawOptions.ShowOpenClose |
StockSeriesView.ShowOpenClose | |
WinForms Controls | StockSeriesViewModel.ShowOpenClose |
Remarks
The values listed by this enumeration are used to set the StockSeriesView.ShowOpenClose and StockDrawOptions.ShowOpenClose properties.
See Also