blazor-devexpress-dot-blazor-dot-chartelementformat-46b1f942.md
Displays milliseconds.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public static ChartElementFormat Millisecond { get; }
| Type | Description |
|---|---|
| ChartElementFormat |
A ChartElementFormat enumeration value.
|
For small time ranges, the Chart component formats axis labels as follows:
Use the Millisecond property to display only milliseconds, for example, 010, and hide hours, minutes, and a time period under all ticks. You can use this property for axis and series labels. The following code snippet calls the method for the argument axis of the Chart:
<DxChart Data="@forecasts">
<DxChartArgumentAxis>
<DxChartAxisLabel Format='ChartElementFormat.Millisecond'></DxChartAxisLabel>
</DxChartArgumentAxis>
@* ... *@
</DxChart>
See Also