FlexChart for WPF
分割円グラフ
FlexPie > 分割円グラフ

Offset プロパティを使用して、FlexPie の中心から円グラフのセグメントを離して、分割円グラフを生成できます。このプロパティは、円グラフのセグメントを中心から離す距離を決定する double 値を受け入れます。

サンプルコードは次のとおりです。

<Grid>

    <Chart:C1FlexPie 
        x:Name="flexPie" 
        InnerRadius="0.5"
        Offset="0.5"
        Header="果物の売り上データ"
        Footer="2015"
        LegendOrientation="Horizontal"
        LegendPosition="Bottom"
        SelectionMode="Point" 
        SelectedItemPosition="Top"
        SelectedItemOffset="2"
        Margin="95,99,328,275" 
        Binding="April" 
        BindingName="Fruit" 
        ItemsSource="{Binding DataContext.Data}">
        <Chart:C1FlexPie.SelectionStyle>
            <Chart:ChartStyle Stroke="Red" 
                              StrokeThickness="2"/>
        </Chart:C1FlexPie.SelectionStyle>
        <Chart:C1FlexPie.DataLabel>
            <Chart:PieDataLabel Content="{}{y}"/>
        </Chart:C1FlexPie.DataLabel>
    </Chart:C1FlexPie>
</Grid>
C#
コードのコピー
flexPie.Offset = 0.5;