Changing Default Colors of WPFToolkit Chart Control
Does anyone know how to or found any good examples of explicitly setting the color of the data points series when using the WPFToolkit chart control? I would like to set this as a style in my XAML. You can set the Palette on the Chart. This example is for a ColumnSeries, but you can adapt it for whatever type you are using. <charting:Chart ... Palette="{StaticResource MyPalette}"> The Palette definition looks like this: <datavis:ResourceDictionaryCollection x:Key="MyPalette"> <ResourceDictionary> <Style x:Key="DataPointStyle" BasedOn="{StaticResource ColumnSeries1Style}" TargetType="Control" /