Silverlight でデータ ポイント ラベルを表示するためのプロパティが表示されず (常に表示されるはずです)、Google は何の喜びも与えません...
それを行う方法の手がかりはありますか?
ここに私のXAMLがあります
<toolkit:Chart Height="400" Width="600" Title="Cumulative Age Dispersions" >
<toolkit:Chart.Axes>
<toolkit:CategoryAxis Title="Content Items" Orientation="X" />
<toolkit:CategoryAxis Title="Seconds" Orientation="Y" Location="Right" />
</toolkit:Chart.Axes>
<toolkit:ColumnSeries Title="Male" ItemsSource="{Binding MaleSerie}" IndependentValueBinding="{Binding ItemName}"
DependentValueBinding="{Binding Count}" ToolTipService.ToolTip="{Binding Count}"
AnimationSequence="Simultaneous"
HorizontalAlignment="Left" Height="304" VerticalAlignment="Top" Width="266"/>
<toolkit:ColumnSeries Title="Female" ItemsSource="{Binding FemaleSerie}" IndependentValueBinding="{Binding ItemName}"
DependentValueBinding="{Binding Count}" ToolTipService.ToolTip="{Binding Count}"
AnimationSequence="Simultaneous"
HorizontalAlignment="Left" Height="304" VerticalAlignment="Top" Width="266">
</toolkit:ColumnSeries>
</toolkit:Chart>