I have a bunch of RadCharts in a CoverFlow. The itemssource to the CoverFlow is a list of RadCharts. It all works pretty well but I want to animate the construction of the charts and the coverflow.
As you know the construction of a radchart is animated. I want to show the first Radchart in the coverflow so the user can see it being built. Then I want to show the second being built, etc, etc. Right now it shows nothing until everything is built even though I add them one at a time in code.
I was thinking of using a storyboard in code with a timespan but is there a better way?
right now my code looks like this but what displays is the last radchart already built.
As you know the construction of a radchart is animated. I want to show the first Radchart in the coverflow so the user can see it being built. Then I want to show the second being built, etc, etc. Right now it shows nothing until everything is built even though I add them one at a time in code.
I was thinking of using a storyboard in code with a timespan but is there a better way?
right now my code looks like this but what displays is the last radchart already built.
myCoverFlow.ItemsSource = wpthumbnails;
ProcessFatigueChart(myPlayerDataClass);
myCoverFlow.SelectedIndex = 0;
ProcessPar345Chart(myPlayerDataClass);
myCoverFlow.SelectedIndex = 1;
ProcessScoringChart(myPlayerDataClass);
myCoverFlow.SelectedIndex = 2;
ProcessTeeShotChart(myPlayerDataClass);
myCoverFlow.SelectedIndex = 3;
ProcessApproachShotChart(myPlayerDataClass);
myCoverFlow.SelectedIndex = 4;
ProcessSummaryChart(myPlayerDataClass);
myCoverFlow.SelectedIndex = 5;
ProcessStrengthsWeaknessesChart(myPlayerDataClass.StrengthData,
'S');
myCoverFlow.SelectedIndex = 6;
ProcessStrengthsWeaknessesChart(myPlayerDataClass.WeaknessData,
'W');
myCoverFlow.SelectedIndex = 7;
thanks,
Gary