Ahojte. Mám problém so zobrazovaním grafu cez wpftoolkit.
Mám graf v xaml kode:
<chatring:Chart HorizontalAlignment="Left" Width="588" BorderBrush="White" Name="Graf">
<chatring:Chart.Series>
<chatring:PieSeries Name="lol" Title="Štatistiky"
ItemsSource="{Binding}"
IndependentValuePath="Key"
DependentValuePath="Value"
IsSelectionEnabled="False"/>
</chatring:Chart.Series>
</chatring:Chart>
Ktorý naplním:
Graf.DataContext = new KeyValuePair<string, double>[] {
new KeyValuePair<string,double>("Prijem",prijem),
new KeyValuePair<string,double>("Vydaj",vydaj)
};
Všetko je zatial v poriadku a aj sa zobrazi tak ako chcem. Problém nastáva vtedy ked chcem
zmenit graf z PieSeries napriklad na Stlpcovy a ktory naplnim takisto ako predchadzajuci graf:
Graf.Series.Clear(); //Graf.Series.Remove(lol);
ColumnSeries cs = new ColumnSeries();
cs.ItemsSource = "{Binding}";
cs.IndependentValuePath = "Key";
cs.DependentValuePath = "Value";
cs.Title = "Funguje";
cs.IsSelectionEnabled = false;
Graf.Series.Add(cs);
Neviete v com moze byt chyba, dakujem?