SeriesPointCollection.AddFinancialPoint(String, Double, Double, Double, Double) Method
Adds a point with the specified argument and values required to plot a series with a financial series view.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v25.1.dll
NuGet Package: DevExpress.Charts
Declaration
public int AddFinancialPoint(
string argument,
double low,
double high,
double open,
double close
)
Parameters
| Name | Type | Description |
|---|---|---|
| argument | String | The argument of the newly added series point. |
| low | Double | The low value of the newly added series point. |
| high | Double | The high value of the newly added series point. |
| open | Double | The open value of the newly added series point. |
| close | Double | The close value of the newly added series point. |
Returns
| Type | Description |
|---|---|
| Int32 | The position at which the new element was inserted. |
See Also