Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
210
Changing xamChart ChartType in XAML
posted

I have the following XAML and it doesn't change the ChartType. What am I missing here?

 

 <Label Grid.Row="0" Grid.Column="0"

       Content="Choose Chart Type:"/>

<ComboBox Grid.Row="0" Grid.Column="1"

          x:Name="cbChartType"

          SelectedItem="{Binding (Series).ChartType,  ElementName=xamChartDrillDown}">

          <ComboBoxItem >Bar</ComboBoxItem>

          <ComboBoxItem >Pie</ComboBoxItem>

</ComboBox>

Thanks

Ganesh