Skip to main content
A newer version of this page is available. .

ReductionStockOptions Class

Contains settings which relate to a price reduction indication within the financial series.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

public class ReductionStockOptions :
    ChartElement

The following members return ReductionStockOptions objects:

Remarks

The ReductionStockOptions class contains settings that define how a price reduction is indicated within a series of the stock and candle stick types. These settings are accessed via the FinancialSeriesViewBase.ReductionOptions property.

This object provides properties that:

Example

This example demonstrates how to access and customize the reduction options of a financial series.

// Create a candle stick series and set some its properties.
Series series1 = new Series("Stock Prices", ViewType.CandleStick);

// Specify the series reduction options.
CandleStickSeriesView myView = (CandleStickSeriesView)series1.View;
myView.ReductionOptions.Level = StockLevel.Close;
myView.ReductionOptions.Color = Color.Blue;
myView.ReductionOptions.Visible = true;

Inheritance

See Also