2
上のデータポイントのseleted値を読み取るためにどのように私は次のようにSilverlightのtookitを使用してバブルチャートを作成しました:Silverlightのツールキット:バブルチャート
<charting:Chart Title="Bubble Chart"
LegendTitle="Legend"
Name="chart1" Margin="0,0,0,42"
HorizontalAlignment="Left" Width="568">
<charting:Chart.Series>
<charting:BubbleSeries Title="Pollutant A" IsSelectionEnabled="True"
ItemsSource="{Binding Pollution}"
IndependentValuePath="AQI"
DependentValuePath="Level"
SelectionChanged="ChangeSomething"
SizeValuePath="size1" >
</charting:BubbleSeries>
</charting:Chart>
そして、私のxaml.csは次のようにハンドラを定義しています
private void ChangeSomething(object sender, SelectionChangedEventArgs e){
Text1.text="selection changed"
// Here I want to show the value of the bubble selected
}
誰かがそれを行う方法を教えてくださいことはできますか?ありがとう:)
を!どうもありがとう :) :) – atv