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 customize charts?

Expand / Collapse
 

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




Details
Type: FAQ
Options