ChartCommonAxisSettingsBuilder.AggregatedPointsPosition(AggregatedPointsPosition) Method
In This Article
Specifies the start position of the aggregated series points in the aggregation interval. Applies only to axes of continuous and logarithmic types. Mirrors the client-side aggregatedPointsPosition option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
#Parameters
Name | Type | Description |
---|---|---|
value | Aggregated |
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()
.CommonAxisSettings(settings => settings
.AggregatedPointsPosition(AggregatedPointsPosition.CrossTicks)
)
)
See Also