CircularGaugeRangeContainerRangeBuilder.EndValue(JS) Method
In This Article
Specifies an end value of a range. Mirrors the client-side endValue option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public CircularGaugeRangeContainerRangeBuilder EndValue(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
Circular |
A reference to this instance after the method is called. |
#Remarks
Use the new JS() expression to set the option’s value.
<script>
var myValue = ...;
</script>
@(Html.DevExtreme().CircularGauge()
.RangeContainer(container => container
.Ranges(ranges => {
ranges.Add().EndValue(new JS("myValue"));
})
)
)
See Also