How do I customize charts?
You can use the below sample code to customize charting within Izenda Reports. This code will generally be placed in the Global.asax file under: public class CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig
public override void CustomizeChart(object obj)
{
Dundas.Charting.WebControl.Chart chart = obj as Dundas.Charting.WebControl.Chart;
chart.Width=700;
foreach (Dundas.Charting.WebControl.Series series in chart.Series)
{
series.BackGradientType = Dundas.Charting.WebControl.GradientType.None;
}
}//end method