簡體   English   中英

帶標簽的餅圖

[英]PieChart with Labels

我想在WPF中制作LabeledPieCharts(來源: Bea的Blog )我已經下載了DemoProject並運行。 如果我要創建LabeledPieChart,它將失敗並顯示以下錯誤:

The Tag "LabeledPieChart.Series" isn't in XML-Namespace "clr-namespace:Controls;assembly=Controls". Line 65 Position 14.

這是我的代碼:

<customControls:LabeledPieChart x:Name="labeledPieChart"
                                Title="Population of Puget Sound Cities"
                                Grid.Row="3"
                                Width="700"
                                Height="500"
                                BorderBrush="Gray">
    <customControls:LabeledPieChart.Series>
        <customControls:LabeledPieSeries x:Name="labeledPieSeries"
                                         DependentValuePath="Population"
                                         IndependentValuePath="Name"
                                         IsSelectionEnabled="True"
                                         ItemsSource="{Binding}"
                                         LabelDisplayMode="Auto"
                                         PieChartLabelItemTemplate="{StaticResource pieChartLabelDataTemplate}"
                                         PieChartLabelStyle="{StaticResource pieChartLabelStyle}" />
    </customControls:LabeledPieChart.Series>
</customControls:LabeledPieChart>

我已經下載了該項目,您的代碼似乎正常運行。 也許這個問題會對您有所幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM