AggregatedPointsPosition Enum
In This Article
Specifies the start position of the aggregated series points in the aggregation interval.
Namespace: DevExtreme.AspNet.Mvc
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
[JsonConverter(typeof(StringEnumConverter))]
public enum AggregatedPointsPosition
#Members
Name | Description |
---|---|
Between
|
Displays aggregated points between ticks. |
Cross
|
Displays ticks in the middle under the aggregated points. |
#Remarks
Use the AllDayPanelMode(AllDayPanelMode) method to specify the display mode for the “All day” panel.
@(Html.DevExtreme().Scheduler()
.AggregatedPointsPosition(AggregatedPointsPosition.CrossTicks);
//...
)
See Also