Whenever I use a chart with a Line series of column series (any series other than Pie Series), I have this error:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure WinRTXamlToolkit.Controls.DataVisualization.Properties.Resources.resources was correctly embedded or linked into assembly "WinRTXamlToolkit.Controls.DataVisualization" at compile time, or that all the satellite assemblies required are loadable and fully signed
what can be wrong here ?
here's the XAML:
<charting:Chart Name="columnChart" Grid.Row="1" Width="400" Height="400" >
<charting:Chart.Series>
<charting:ColumnSeries ItemsSource="{Binding items}"
IndependentValueBinding="{Binding Name}"
DependentValueBinding="{Binding Value}"
IsSelectionEnabled="True">
</charting:ColumnSeries>
</charting:Chart.Series>
</charting:Chart>