I get this message:
ex.Message = "Parameter '' cannot be null.\r\nParameter name: serializationStream"
When the following code executes:
Code: Select all
Steema.TeeChart.Themes.ClassicTheme chartTheme2 = new Steema.TeeChart.Themes.ClassicTheme();
try
{
chartTheme2.Apply(c.Chart);
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
}
Is there a fix for this issue?
If not what would be another way that I could apply some of the aspects of the theme to my chart? Particularly how can I set the chart background color?