J'utilise les graphiques de la boîte à outils MS et je n'arrive pas à trouver comment modifier la couleur des zones. Je dois remplir le graphique de façon dynamique, ce qui signifie que je ne sais pas à l'avance combien de sections le graphique aura.
Voici le code que j'ai.
var a = new AreaSeries
{
Title = "a",
IndependentValuePath = "Key",
DependentValuePath = "Value",
Background = Brushes.Plum
};
J'ai essayé de changer à la fois l'avant-plan et l'arrière-plan, mais sans succès.
mcChart.Series.Add(a);
a = new AreaSeries
{
Title = "b",
IndependentValuePath = "Key",
DependentValuePath = "Value",
Background = Brushes.Peru
};
mcChart.Series.Add(a);
Remplissez le tableau.
((AreaSeries)mcChart.Series[0]).ItemsSource = new[]
{
new KeyValuePair<string, int>("1", 100),
new KeyValuePair<string, int>("2", 180),
new KeyValuePair<string, int>("3", 110),
new KeyValuePair<string, int>("4", 95),
new KeyValuePair<string, int>("5", 40),
new KeyValuePair<string, int>("6", 95)
};
((AreaSeries)mcChart.Series[1]).ItemsSource = new[]
{
new KeyValuePair<string, int>("1", 150),
new KeyValuePair<string, int>("2", 280),
new KeyValuePair<string, int>("3", 310),
new KeyValuePair<string, int>("4", 195),
new KeyValuePair<string, int>("5", 340),
new KeyValuePair<string, int>("6", 195)
};
Je suis nouveau dans wpf et je n'arrive pas à comprendre ce qui ne va pas dans ce cas.
Voici le XAML
<chartingToolkit:Chart
Width="600" Height="450"
Name="mcChart"
Background="LightBlue"
Foreground="DarkBlue"
Title="Area Chart">
</chartingToolkit:Chart>
Comment puis-je changer la couleur de la zone a et de la zone b ? Actuellement, elles ont la couleur par défaut, même si j'ai défini l'arrière-plan et le premier plan.
Merci.