File "DrillDown.aspx.cs"
Full Path: /home/analogde/www/php/integrations/asp.net-cs/samples/Pages/DrillDown.aspx.cs
File size: 515 bytes
MIME-type: text/plain
Charset: utf-8
using System;
using FusionCharts.Charts;
public partial class DrillDown : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
RenderChart();
}
private void RenderChart()
{
//Create chart instance
// charttype, chartID, width, height, data format, data
Chart chart = new Chart("column2d", "first_chart", "900", "550", "jsonurl", "Handler/Handler.ashx");
Literal1.Text = chart.Render();
}
}