I have two WPF toolkit charts (column and pie).
<-- Column Chart -->
<DVC:Chart Name="mcChartPie" Title="{Binding ChartName}"
DataContext="{Binding SelectedChart}">
<DVC:Chart.Series>
<DVC:PieSeries ItemsSource="{Binding Columns}" Title="Some Chart"
IndependentValueBinding="{Binding Path=Name}" DependentValueBinding="{Binding
Path=Value}"></DVC:PieSeries>
</DVC:Chart.Series>
</DVC:Chart>
<-- Pie Chart -->
<DVC:Chart Name="mcChart" Title="{Binding ChartName}"
DataContext="{Binding SelectedChart}" Style="{DynamicResource Info>
<DVC:Chart.Series>
<DVC:ColumnSeries ItemsSource="{Binding Columns}" Title="Some Chart"
IndependentValueBinding="{Binding Path=Name}" DependentValueBinding="{Binding
Path=Value}" Background="Black" AnimationSequence="FirstToLast" ></DVC:ColumnSeries>
</DVC:Chart.Series>
</DVC:Chart>
There is a combobox that allows user to select the chart type. When user selects the "Column Chart Type", the column chart template should be visible and when user selects "Pie Chart Type", the pie chart template should be visible. How can I do this by overriding SelectTemplate() method in the DataTemplateSelector class?
Try something like this, just a simple method which creates a new serie (Pie, Bar, Column, Lines , Area), and then adds the serie to the chart control after clearing the previous serie loaded on the chart control.
Regards