Skip to main content

Dimension.IsDiscreteNumericScale Property

Gets or sets whether to treat numeric dimension values as if they were defined on a discrete or continuous scale.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

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

Property Value

Type Default Description
Boolean false

true, to treat numeric dimension values as if they were defined on a discrete scale; otherwise, false.

Remarks

Use the IsDiscreteNumericScale property to specify whether to use a discrete or continuous argument axis in a chart when this dimension is only in the Arguments section.

If a continuous axis is used, the distance between argument values is proportional to their values.

Chart_NumericAxis_Continuous

On a discrete axis, all argument values are equally distant from each other.

Chart_NumericAxis_Discrete

If the Dimension data type is not numeric, the IsDiscreteNumericScale property is not in effect.

Note

A continuous chart argument axis is not supported in OLAP mode.

See Also