Skip to main content

PolarChartCommonSeriesSettingsValueErrorBarBuilder.Value(Double) Method

Specifies the value to be used for generating error bars. Mirrors the client-side value option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public PolarChartCommonSeriesSettingsValueErrorBarBuilder Value(
    double value
)

Parameters

Name Type Description
value Double

The option value.

Returns

Type Description
PolarChartCommonSeriesSettingsValueErrorBarBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().PolarChart()
    .CommonSeriesSettings(settings => settings
        .ValueErrorBar(bar => bar
            .Value(10)
        )
    )
)
See Also