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

ChartSeries.PlotOnSecondaryAxis Property

Gets or sets a value indicating whether to plot series using the secondary axis.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v19.1.Core.dll

Declaration

[DefaultValue(false)]
public bool PlotOnSecondaryAxis { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to plot series using the secondary axis; otherwise, false.

Remarks

Set the PlotOnSecondaryAxis property to true to plot series using the secondary axis. For instance, the following code snippet shows how to plot series point values using the secondary Y-axis.

SimpleSeries salesAmountSeries = new SimpleSeries(SimpleSeriesType.Bar);
salesAmountSeries.Value = new Measure("Extended Price");
salesAmountSeries.PlotOnSecondaryAxis = true;

Chart_secondaryYAxis

See Also