¿Gráfico de área wpf con diferentes colores?

Estoy reflexionando sobre los cuadros del kit de herramientas de MS y no puedo entender cómo cambiar el color de las áreas. Necesito llenar el gráfico dinámicamente, lo que significa que no sé de antemano cuántas secciones tendrá el gráfico de área.

Aquí está el código que tengo.

var a = new AreaSeries
{
  Title = "a",
  IndependentValuePath = "Key",
  DependentValuePath = "Value",
  Background = Brushes.Plum
};

He tratado de cambiar tanto el primer plano como el fondo y sin dados.

mcChart.Series.Add(a);

a = new AreaSeries
{
  Title = "b",
  IndependentValuePath = "Key",
  DependentValuePath = "Value",
  Background = Brushes.Peru
};

mcChart.Series.Add(a);

Llena el cuadro.

((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)
};

Soy nuevo en wpf y no puedo entender qué está mal con esto.

Aquí está el XAML

<chartingToolkit:Chart 
  Width="600" Height="450"
  Name="mcChart" 
  Background="LightBlue"
  Foreground="DarkBlue"
  Title="Area Chart">                
</chartingToolkit:Chart>

¿Cómo cambio el color del área a y el área b. En este momento son los colores predeterminados, aunque configuré el fondo y el primer plano.

Gracias.

Respuestas a la pregunta(1)

Su respuesta a la pregunta