Styling Silverlight Charts with automatic colors
May 12, 2011 1 Comment
The Silverlight Toolkit provides some pretty nice data visualization tools. There are a plethora of different chart types available, and for the most part, they’re pretty easy to use, and very customizable to your needs. One of the nice things it does to make your life easier, each series you add to the chart gets automatically color-coded with attractive gradients. Its a nice touch.
One of the frustrating things about the charting tools is that if you style your series, that automatic color disappears – everything is orange. You can manually set colors – but its extra effort, and you need to create a new style for every color. Irritating, to say the least, especially if you dynamically add your series. I had a series that I wanted to style – specifically, I wanted to add a custom ToolTip, like I describe here. And the number of series is dynamic, which didn’t help things.
The charting toolkit is open source, so I went poking around, trying to find how and where they set these automatic colors. I never did find it – but I did find a cache of styles, that looked to be exactly the automatic colors that get applied. See for yourself – the code is installed by default to C:\Program Files (x86)\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Source\Source code.zip. Unzip that, then open up Controls.DataVisualization.Toolkit\Themes\generic.xaml. About line 270, you’ll see this….
<Style TargetType="charting:Chart"> <Setter Property="BorderBrush" Value="Black" /> <Setter Property="BorderThickness" Value="1" /> <Setter Property="IsTabStop" Value="False" /> <Setter Property="Padding" Value="10" /> <Setter Property="Palette"> <Setter.Value> <datavis:ResourceDictionaryCollection> <!-- Blue --> <ResourceDictionary> <RadialGradientBrush x:Key="Background" GradientOrigin="-0.1,-0.1" Center="0.075,0.015" RadiusX="1.05" RadiusY="0.9"> <GradientStop Color="#FFB9D6F7" /> <GradientStop Color="#FF284B70" Offset="1" /> </RadialGradientBrush> <Style x:Key="DataPointStyle" TargetType="Control"> .....
Jackpot! It seems what I need is under Chart.Palatte. Now its just a matter of applying…which, of course, was not as easy as it seems.
First, I tried making a style, adding the background color to it, and applying it to my series. Like this:
XAML:
<Style x:Name="MyStyle" TargetType="charting:LineDataPoint"> <Setter Property="Template" Value="{StaticResource MyTemplate}" /> </Style>
Code:
//Create a new setter using the chart palatte and apply it to my existing style Setter bgSetter = new Setter(LineDataPoint.BackgroundProperty, MyChart.Palatte[0]["Background"]); Style myStyle = Resources["MyStyle"] as Style; myStyle.Setters.Add(bgSetter); //Create a new series using that style and add it to the chart LineSeries newSeries = new LineSeries(); newSeries.DataPointStyle = myStyle; MyChart.Series.Add(newSeries);
Looks good right? Compiles ok….and you get a CATASTROPHIC FAILURE COM Exception. Yikes! That’s not what you want to hear. Turns out, there’s a bug deep in the bowels of Silverlight that doesn’t like when you change a DependencyProperty after its already been set. So, you have to create the new style from scratch.
//Clear the previous series MyChart.Series.Clear(); int palatteIndex = 0; foreach (Object myData in myDataList) { //Create a new BackgroundProperty setter, using the current index of the chart palatte Setter bgSetter = new Setter(LineDataPoint.BackgroundProperty, MyChart.Palatte[palatteIndex]["Background"]); //create other setters //Create the new style Style newStyle = new Style(typeof(LineDataPoint)); newStyle.Setters.Add(bgSetter); //add other setters //Create your new series and apply the new style LineSeries newSeries = new LineSeries(); newSeries.DataPointStyle = newStyle; //create bindings and add data to series MyChart.Series.Add(newSeries); //Increment the palatte //If we've reached the total number of presets, reset back to the beginning //If you'd prefer, you could use some sort of random number generator here instead. ++palatteIndex; if(palatteIndex > MyChart.Palatte.Count) { palatteIndex = 0; } }
And there you have it! You can style your series to your heart’s content, but still maintain the nice, attractive automatic colors for the series! Note that while I used LineSeries, this will work for any of them – ColumnSeries, BarSeries, PieSeries, you name it.
Nice nice nice, set LineDataPoint, ColumnDataPoint etc. style erase the random background, your post is very helpfull for me ! Thx you!!