Skip to main content

IMajorTickmark.Addend Property

Gets or sets the value added to the scale’s values. The result is displayed by the tickmark labels.

Namespace: DevExpress.XtraGauges.Core.Model

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

NuGet Package: DevExpress.Gauges.Core

Declaration

float Addend { get; set; }

Property Value

Type Description
Single

A Single value added to the scale’s values.

Remarks

Initially, the tickmark labels display the scale’s original values. However, the actual formula to calculate the tickmark display values is:TickmarkDisplayValue = ScaleValue * Multiplier + Addend , where Multiplier is the IMajorTickmark.Multiplier property’s value, and Addend is the IMajorTickmark.Addend property’s value.

See Also