Izenda, LLC

Ad Hoc Reports & Dashboards for ASP.NET Apps

Free Trial

Izenda Reports is licensed on a "per user" or "per server" basis. Please complete this form to receive a price quote.

All fields are required.

The live demo demonstrates Izenda reports with the Northwind Sample database. To login, please register below.

All fields are required.

Please register to try Izenda reports on your data today.

All fields are required.

How do I dynamically create reports via the API?

Expand / Collapse
 

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


Related Links




Details
Type: FAQ
Options