{{UnderConstructionStart}}
Namespaces, '''The Title, Legend, and the Zoom & Pan behavior syntax of the Chart control have changed. Further, some SyncFusion Chart components & Properties have changed. '''<br>⚠️ For more information and examplesabout changed SyncFusion Chart components & Properties, please refer to the [https://help.syncfusion.com/maui/cartesian-charts/overview Syncfusion Maui Charts documentation].
{| class="wikitable"
! Xamarin
|-
| <syntaxhighlight lang="xml">
xmlns:chart="clr-namespace:Syncfusion.SfChart.XForms;assembly=Syncfusion.SfChart.XForms"
xmlns:controls="clr-namespace:UBIK.CPL.Controls;assembly=UBIK.CPL"
<chart:SfChart.Title>
<chart:ChartTitle Text="{Binding Header}" />
</syntaxhighlight>
| <syntaxhighlight lang="xml">
xmlns:chart="clr-namespace:Syncfusion.Maui.Toolkit.Charts;assembly=Syncfusion.Maui.Toolkit"
xmlns:controls="clr-namespace:UBIK.MAUI.Controls;assembly=UBIK.MAUI"
<controls:SfChartExt.Title>
<Label Text="{Binding Header}" HorizontalOptions="Center" />
<chart:NumericalPlotBand
StrokeWidth="2"
Stroke="{Binding Color, Converter={StaticResource IntToColor}}"
StrokeWidth="5"
Start="{Binding Value}"
End="{Binding Value}" />
Fill="{Binding Color, Converter={StaticResource IntToColor}}"
XBindingPath="XValue"
YBindingPath="YValue" StrokeWidth="2" EnableAntiAliasing="True" />
</syntaxhighlight>
|}