views:

332

answers:

1

I Fill my Pie Chart with Data (form observablehas -> dict) but everytime the chart gets new data, the pie fades out and fades in. I want the pie slices to change like here: http://silverlight.net/content/samples/sl2/toolkitcontrolsamples/run/default.html

if you choose "Pie Series" and then look at "dynamic data items".

A: 

When you get new data, you should add them to the ObservableCollection without clearing the ObservableCollection first. I assume you either overwrite your ObservableCollection or you clear it before adding the new data.

Emanuel Pasat