PieChart.xaml 1.14 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<UserControl x:Class="FLY.Weight.UI.Client.Control.PieChart"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing" 
             mc:Ignorable="d" 
             Loaded="UserControl_Loaded"
             d:DesignHeight="300" d:DesignWidth="300" >
    
        <Grid x:Name="RootGrid">
            <ed:Arc 
                ArcThickness="200" 
                
                StartAngle="0" EndAngle="120" 
                Fill="#FFFFC0C0" Stretch="None"  />
        
            <ed:Arc 
                ArcThickness="200" 
                
                StartAngle="120" EndAngle="240" 
                Fill="#FF008BE5" Stretch="None"  />
        <ed:Arc 
                ArcThickness="200" 
                
                StartAngle="240" EndAngle="360" 
                Fill="#FFBCD676" Stretch="None"  />

    </Grid>
</UserControl>