using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace InfoSoftGlobal.BluePrintApp.FC_ASP { /// /// Summary description for Chart_SalesByCountry. /// public class Chart_SalesByCountry : System.Web.UI.Page { public string year; private void Page_Load(object sender, System.EventArgs e) { //Request the year for which we've to show data. year = Request.QueryString["Year"]; //If year has not been provided, we default to 1996 if (year == null || year.Length == 0) year = "1996"; } public string GetSalesChartHtml() { //Generate the XML data for the main pie chart. string strXML ; strXML = ""; strXML = strXML + DataGeneration.GetSalesByCountryXML(year,"-1",true,false); //Add some styles to increase caption font size strXML = strXML + "