Templates for the Numeric, Category, and DateTime Axis, including bindings to the related [[Charts#ChartAxis|ChartAxis]] properties, must be added to the Resources as defined in the example below.
The Primary Axis supports Numeric, Category, and DateTime Axis types, the Secondary Axis supports Numeric and DateTime Axis types.
==== Template Selectors ====
<tab name="Namespaces Maui">
<source lang = "xml">
xmlns:chart="clr-namespace:Syncfusion.Maui.Toolkit.Charts;assembly=Syncfusion.Maui.ChartsToolkit"
xmlns:converters="clr-namespace:UBIK.MAUI.Converters;assembly=UBIK.MAUI"
xmlns:resources="clr-namespace:UBIK.MAUI.Resources;assembly=UBIK.MAUI"
<tab name="Mobile(Maui)">
<source lang = "XML">
xmlns:chart="clr-namespace:Syncfusion.Maui.Toolkit.Charts;assembly=Syncfusion.Maui.ChartsToolkit"
xmlns:controls="clr-namespace:UBIK.MAUI.Controls;assembly=UBIK.MAUI"
<controls:SfChartExt
SeriesSource="{Binding Series}"
StripLinesSource="{Binding Thresholds}">
<chartcontrols:SfCartesianChartSfChartExt.Title>
<Label Text="{Binding Header}" HorizontalOptions="Center" />
</chartcontrols:SfCartesianChartSfChartExt.Title>
<controls:SfChartExt.StripLinesTemplate>
<DataTemplate>
</DataTemplate>
</controls:SfChartExt.SeriesTemplate>
<chartcontrols:SfCartesianChartSfChartExt.Legend>
<chart:ChartLegend />
</chartcontrols:SfCartesianChartSfChartExt.Legend> <chartcontrols:SfCartesianChartSfChartExt.ZoomPanBehavior>
<chart:ChartZoomPanBehavior />
</chartcontrols:SfCartesianChartSfChartExt.ZoomPanBehavior>
</controls:SfChartExt>
</source>