How do I dynamically create reports via the API?
You can use the below sample code to cusomize charting within Izenda Reports.
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