maui-devexpress-dot-maui-dot-charts-2282b1a2.md
Stores date-time axis label formats for arguments of different measurement units.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
[ContentProperty("LabelFormats")]
public class AxisLabelFormatAutoReplaceOptions :
StyledElement
The following members return AxisLabelFormatAutoReplaceOptions objects:
The following example configures a date-time axis so that it automatically shows when the next month starts:
<dxc:DateTimeAxisX x:Name="xAxis" GridAlignment="Day" GridSpacing="5">
<dxc:DateTimeAxisX.LabelFormatAutoReplaceOptions>
<dxc:AxisLabelFormatAutoReplaceOptions>
<dxc:DateTimeLabelFormat MeasureUnit="Day" Format="d"/>
<dxc:DateTimeLabelFormat MeasureUnit="Month" Format="MMM, d"/>
</dxc:AxisLabelFormatAutoReplaceOptions>
</dxc:DateTimeAxisX.LabelFormatAutoReplaceOptions>
</dxc:DateTimeAxisX>
System.Object BindableObject Element ChartElementBase ChartElement StyledElement AxisLabelFormatAutoReplaceOptions
Yield<AxisLabelFormatAutoReplaceOptions>()
YieldIfNotNull<AxisLabelFormatAutoReplaceOptions>()
See Also