ChartCommonSeriesSettingsBuilder.RangeValue1Field(String) Method
In This Article
Coupled with the rangeValue2Field property, specifies which data source field provides values for a range-like series. Mirrors the client-side rangeValue1Field option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public ChartCommonSeriesSettingsBuilder RangeValue1Field(
string value
)
#Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
#Returns
Type | Description |
---|---|
Chart |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Chart()
.CommonSeriesSettings(settings => settings
.RangeValue1Field("MyValue1Field")
)
)
See Also