corelibraries-devexpress-dot-xtracharts-dot-reductionstockoptions-15ea179f.md
Gets or sets the color of the price reduction.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
public Color Color { get; set; }
Public Property Color As Color
| Type | Description |
|---|---|
| Color |
A Color structure that specifies the price reduction’s color.
|
You can access this nested property as listed below:
| Object Type | Path to Color |
|---|---|
| FinancialDrawOptions |
.ReductionOptions .Color
| | FinancialSeriesViewBase |
.ReductionOptions .Color
|
Use the Color property to specify a color to indicate the price reduction.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Color property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-chart-create-candlestick-chart/VB/CandleStickChart/Form1.vb#L39
view.Color = Color.Green
view.ReductionOptions.Color = Color.Red
' Access the chart's diagram.
See Also