Skip to main content

LinearGaugeBuilder.Subvalues(IEnumerable<Double>) Method

Specifies a set of subvalues to be designated by the subvalue indicators. Mirrors the client-side subvalues option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public LinearGaugeBuilder Subvalues(
    IEnumerable<double> value
)

Parameters

Name Type Description
value IEnumerable<Double>

The option value.

Returns

Type Description
LinearGaugeBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().LinearGauge()
    .Subvalues(new double[] { 10, 20 })
)
See Also