21 lines
927 B
XML
21 lines
927 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView
|
|
x:Class="TechTitans.Views.Components.Piechart"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:drawables="clr-namespace:TechTitans.Views.Components"
|
|
x:Name="this">
|
|
|
|
<GraphicsView>
|
|
<GraphicsView.Drawable>
|
|
<drawables:PiechartDrawble
|
|
Progress="{Binding Progress, Source={x:Reference this}}"
|
|
Size="{Binding Size, Source={x:Reference this}}"
|
|
TextColor="{Binding TextColor, Source={x:Reference this}}"
|
|
Thickness="{Binding Thickness, Source={x:Reference this}}"
|
|
ProgressColor="{Binding ProgressColor, Source={x:Reference this}}"
|
|
ProgressLeftColor="{Binding ProgressLeftColor, Source={x:Reference this}}"/>
|
|
</GraphicsView.Drawable>
|
|
</GraphicsView>
|
|
|
|
</ContentView> |