xaml-sdk/ChartView/WPF/Animations/Pie2.xaml

26 строки
1.4 KiB
XML

<UserControl x:Class="Animations.Pie2"
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:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:local="clr-namespace:Animations"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<telerik:RadPieChart x:Name="chart" Palette="Flower">
<telerik:RadPieChart.Series>
<telerik:PieSeries ValueBinding="YVal1" ItemsSource="{Binding}" local:ChartAnimationUtilities.PieAnimation="Slice">
<telerik:PieSeries.AngleRange>
<telerik:AngleRange StartAngle="-90" />
</telerik:PieSeries.AngleRange>
<telerik:PieSeries.LabelDefinitions>
<telerik:ChartSeriesLabelDefinition Margin="-5 0 0 0" />
</telerik:PieSeries.LabelDefinitions>
</telerik:PieSeries>
</telerik:RadPieChart.Series>
</telerik:RadPieChart>
<Button HorizontalAlignment="Right" VerticalAlignment="Bottom" Content="run" Click="Button_Click" />
</Grid>
</UserControl>