|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/FusionChart/Code/CS/DB_DrillDown/ |
Upload File : |
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using InfoSoftGlobal;
using DataConnection;
public partial class DBExample_Detailed : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//This page is invoked from Default.asp. When the user clicks on a pie
//slice in Default.aspx, the factory Id is passed to this page. We need
//to get that factory id, get information from database and then show
//a detailed chart.
//First, get the factory Id
// string factoryId ="";
//Request the factory Id from Querystring
string factoryId = Request["FactoryId"];
//xmlData will be used to store the entire XML document generated
StringBuilder xmlData = new StringBuilder();
//Generate the chart element string
xmlData.Append("<chart palette='2' caption='Factory " + factoryId + " Output ' subcaption='(In Units)' xAxisName='Date (dd/MM)' showValues='1' labelStep='2' >");
//Now, we get the data for that factory
string query = "select DatePro, Quantity from Factory_Output where FactoryId=" + factoryId;
DbConn oRs = new DbConn(query);
//Iterate through each record
while (oRs.ReadData.Read())
{
//Convert date from database into dd/mm format
//Generate <set name='..' value='..' />
xmlData.Append("<set label='" + Convert.ToDateTime(oRs.ReadData["DatePro"]).ToString("dd/MM") + "' value='" + oRs.ReadData["Quantity"].ToString() + "'/>");
}
oRs.ReadData.Close();
//Close <chart> element
xmlData.Append("</chart>");
//Create the chart - Column 2D Chart with data from xmlData
Literal1.Text = FusionCharts.RenderChart("../FusionCharts/Column2D.swf", "", xmlData.ToString(), "FactoryDetailed", "600", "300", false, true);
}
}