ChartAxisInterval.Minutes(Int32) Method
In This Article
Returns the interval between two ticks of the specified number of minutes.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
public static ChartAxisInterval Minutes(
int interval
)
#Parameters
Name | Type | Description |
---|---|---|
interval | Int32 | The number of minutes. |
#Returns
Type | Description |
---|---|
Chart |
A Chart |
#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 5 minutes for major ticks and one minute for minor ticks:
Razor
<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.Minutes(5)"
MinorTickInterval="ChartAxisInterval.Minute">
<DxChartAxisMinorTick Visible="true" />
</DxChartArgumentAxis>
<DxChartLegend Visible="false" />
</DxChart>
See Also