AxisLabelFormatAutoReplaceOptions Class
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
#Declaration
C#
[ContentProperty("LabelFormats")]
public class AxisLabelFormatAutoReplaceOptions :
StyledElement
#Related API Members
The following members return AxisLabelFormatAutoReplaceOptions objects:
#Example
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>
#Inheritance
System.Object
BindableObject
Element
ChartElementBase
ChartElement
StyledElement
AxisLabelFormatAutoReplaceOptions
#Extension Methods
See Also