The list below describes recent changes and additions to MindFusion.Charting for Silverlight:
Styles define the appearance of a given chart element - the axis, the series, the legend. Each ChartTheme is a collection of styles. With MindFusion.Charting for Silverlight you can now:
The "Working with Themes" tutorial gives detailed information on how to create, save, load and edit themes with MindFusion.Charting for Silverlight.
MindFusion.Charting for Silverlight lets you now edit all collection properties, including the Series collection, the brushes and strokes in design time through the property grid.
Due to the extended design time support that we added in this version all predefined data series and brush collections have been removed from the charts. This might lead to exceptions if you reference them. To correct this just create a new instance of the type you are trying to access in the collection.
Wrong:
C#
![]() |
---|
//this will result in an exception, there isn't a predefined series any more. |
VB.NET
![]() |
---|
'this will result in an exception, there isn't a predefined series any more. |
Correct:
C#
![]() |
---|
BarSeries series0 = new BarSeries(); |
VB.NET
![]() |
---|
Dim series0 As New BarSeries() |