I have vm with property observablecollection, then xaml this
<telerik:RadCartesianChart x:Name="chart" Grid.Row="0" Grid.ColumnSpan="2" BackgroundColor="{StaticResource DarkBg1}">
<telerik:RadCartesianChart.VerticalAxis >
<telerik:CategoricalAxis LabelTextColor="White" LineColor="White" ShowLabels="True" LabelFontSize="10"/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:NumericalAxis LabelTextColor="White" LineColor="White" ShowLabels="True" LabelFontSize="10">
</telerik:NumericalAxis>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.Series >
<telerik:BarSeries ValueBinding="MontoVentaTiendaDia"
ShowLabels="True"
LabelFormat="{}{0:N2}"
CategoryBinding="NombreTienda"
ItemsSource="{Binding Ventas}" >
</telerik:BarSeries>
</telerik:RadCartesianChart.Series>
<telerik:RadCartesianChart.Behaviors>
<telerik:ChartTooltipBehavior TriggerMode="Tap" >
</telerik:ChartTooltipBehavior>
</telerik:RadCartesianChart.Behaviors>
<telerik:RadCartesianChart.Palette>
<telerik:ChartPalette>
<telerik:ChartPalette.Entries>
<telerik:PaletteEntry FillColor="#345EA8" StrokeColor="#345EA8" />
</telerik:ChartPalette.Entries>
</telerik:ChartPalette>
</telerik:RadCartesianChart.Palette>
</telerik:RadCartesianChart>
But when change de observablecollection don't change chart, what i'm have to do?
Thanks