2017-04-01 136 views
2

我想使用WPF工具包(System.Windows.Controls.DataVisualization.Toolkit.dll)WPF工具包餅圖顯示不

圖表本身是由該doind在創建顯示WPF餅圖我XAML:

<DVC:Chart BorderThickness="0" Title="Arbeitsverteilung" Grid.Column="0" Grid.Row="0" Background="Teal" x:Name="workDist" > 
    <DVC:Chart.Series> 
    <DVC:PieSeries 
     IndependentValuePath="Key" 
     DependentValuePath="Value" 
     VerticalAlignment="Top" 
     HorizontalAlignment="Stretch"/> 
    </DVC:Chart.Series> 
</DVC:Chart> 

,我設置下面的方法將數據源:這似乎是一個問題,工作得很好

private void LoadData() 
{ 
    ((PieSeries)workDist.Series[0]).ItemsSource = 
    new KeyValuePair<string, int>[] { 
     new KeyValuePair<string, int> ("Mario", 12), 
     new KeyValuePair<string, int> ("Ahner", 14)}; 
} 

: 只顯示S中的傳說圖表而不是圖表本身:

screenshot

我已經讀了幾教程,但每個人都做到了酷似我沒有和它工作得很好。

如果有人能幫助我,那會很好!

回答

2

取出頂部垂直對齊方式:

<DVC:Chart BorderThickness="0" Title="Arbeitsverteilung" Grid.Column="0" Grid.Row="0" Background="Teal" x:Name="workDist" > 
     <DVC:Chart.Series> 
      <DVC:PieSeries 
       IndependentValuePath="Key" 
       DependentValuePath="Value" 
       HorizontalAlignment="Stretch" 
       /> 
     </DVC:Chart.Series> 
    </DVC:Chart> 

enter image description here

+0

哦,我的上帝,我已經預料到是這樣一個愚蠢的錯誤...感謝隊友,完美的作品! – Kopse

+0

非常歡迎! – jsanalytics