|
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/BasicExample/ |
Upload File : |
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Text;
using InfoSoftGlobal;
public partial class BasicExample_dataXML : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//This page demonstrates the ease of generating charts using FusionCharts.
//For this chart, we've used a string variable to contain our entire XML data.
//Ideally, you would generate XML data documents at run-time, after interfacing with
//forms or databases etc.Such examples are also present.
//Here, we've kept this example very simple.
//Create an XML data document in a string variable
StringBuilder xmlData = new StringBuilder();
xmlData.Append("<chart caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' showValues='0' formatNumberScale='0' showBorder='1'>");
xmlData.Append("<set label='Jan' value='462' />");
xmlData.Append("<set label='Feb' value='857' />");
xmlData.Append("<set label='Mar' value='671' />");
xmlData.Append("<set label='Apr' value='494' />");
xmlData.Append("<set label='May' value='761' />");
xmlData.Append("<set label='Jun' value='960' />");
xmlData.Append("<set label='Jul' value='629' />");
xmlData.Append("<set label='Aug' value='622' />");
xmlData.Append("<set label='Sep' value='376' />");
xmlData.Append("<set label='Oct' value='494' />");
xmlData.Append("<set label='Nov' value='761' />");
xmlData.Append("<set label='Dec' value='960' />");
xmlData.Append("</chart>");
//Create the chart - Column 3D Chart with data from xmlData variable using dataXML method
Literal1.Text = FusionCharts.RenderChart("../FusionCharts/Column3D.swf", "", xmlData.ToString(), "myNext", "600", "300", false, true);
}
}