سؤال

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>
هل كانت مفيدة؟

المحلول 2

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?

نصائح أخرى

I had the same problem. Adding the source to my own solution did not help by itself. I did manage to fix it by changing the Build Action of the resources file to Embedded Resource.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top