Search code examples
windows-runtimewinrt-xamlwinrt-xaml-toolkit

WinRT Xaml Toolkit Bar Chart error?


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>

Solution

  • OK removing the references and adding again using NuGet solved the initial problem, the solution to the Column Chart in this link WinRT Xaml Toolkit Column Series Error?