Skip to content

Commit

Permalink
Updated the xaml code
Browse files Browse the repository at this point in the history
  • Loading branch information
saiyathalifathimabee.m@syncfusion.com authored and saiyathalifathimabee.m@syncfusion.com committed Mar 28, 2024
1 parent 0a33224 commit 1e25e7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Polar_chart_sample/PolarChartSample/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<chart:SfPolarChart>

<chart:SfPolarChart.Title>
<Label Text="Plant Analysis" HorizontalTextAlignment="Center"/>
<Label Text="Plant Analysis" HorizontalTextAlignment="Center" Padding="0,20,0,0"/>
</chart:SfPolarChart.Title>

<chart:SfPolarChart.Legend>
Expand All @@ -24,16 +24,16 @@
</chart:SfPolarChart.PrimaryAxis>

<chart:SfPolarChart.SecondaryAxis>
<chart:NumericalAxis/>
<chart:NumericalAxis Maximum="100"/>
</chart:SfPolarChart.SecondaryAxis>

<chart:PolarAreaSeries ItemsSource="{Binding PlantDetails}" XBindingPath="Direction"
<chart:PolarLineSeries ItemsSource="{Binding PlantDetails}" XBindingPath="Direction"
YBindingPath="Tree" Label="Tree" EnableTooltip="True" ShowDataLabels="True"/>

<chart:PolarAreaSeries ItemsSource="{Binding PlantDetails}" XBindingPath="Direction"
<chart:PolarLineSeries ItemsSource="{Binding PlantDetails}" XBindingPath="Direction"
YBindingPath="Weed" Label="Weed" EnableTooltip="True" ShowDataLabels="True"/>

<chart:PolarAreaSeries ItemsSource="{Binding PlantDetails}" XBindingPath="Direction"
<chart:PolarLineSeries ItemsSource="{Binding PlantDetails}" XBindingPath="Direction"
YBindingPath="Flower" Label="Flower" EnableTooltip="True" ShowDataLabels="True"/>
</chart:SfPolarChart>

Expand Down

0 comments on commit 1e25e7c

Please sign in to comment.