ChartAxisInterval.Week Property
Returns an interval of one week.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public static ChartAxisInterval Week { get; }
Property Value
Type | Description |
---|---|
ChartAxisInterval | A ChartAxisInterval structure object. |
Remarks
The Chart automatically calculates the interval between major and minor ticks based on the axis values. Use the TickInterval and MinorTickInterval properties to specify custom intervals.
The following example sets the tick interval to 6 weeks for major ticks and one week for minor ticks:
<DxChart Data="@forecasts">
<DxChartLineSeries ArgumentField="@((WeatherForecast i) => i.Date)"
ValueField="@((WeatherForecast i) => i.TemperatureC)"
Name="Temperature, C" />
<DxChartLineSeries ArgumentField="@((WeatherForecast i) => i.Date)"
ValueField="@((WeatherForecast i) => i.TemperatureF)"
Name="Temperature, F" />
<DxChartArgumentAxis TickInterval="ChartAxisInterval.Weeks(6)"
MinorTickInterval="ChartAxisInterval.Week">
<DxChartAxisMinorTick Visible="true" />
</DxChartArgumentAxis>
</DxChart>
See Also