File "NumberFormatModule.aspx.cs"
Full Path: /home/analogde/www/samples/Pages/NumberFormatModule.aspx.cs
File size: 1.38 KB
MIME-type: text/plain
Charset: utf-8
using System;
using FusionCharts.Charts;
public partial class Pages_NumberFormatModule : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//json data in string format
string jsonData = "{ 'chart': { 'caption': 'Countries With Most Oil Reserves [2017-18]', 'subCaption': 'In MMbbl = One Million barrels', 'xAxisName': 'Country', 'yAxisName': 'Reserves (MMbbl)', 'numberPrefix': '$', 'decimals': '2', 'forceDecimals': '1', 'theme': 'fusion', }, 'data': [{ 'label': 'Venezuela', 'value': '290' }, { 'label': 'Saudi', 'value': '260' }, { 'label': 'Canada', 'value': '180' }, { 'label': 'Iran', 'value': '140' }, { 'label': 'Russia', 'value': '115' }, { 'label': 'UAE', 'value': '100' }, { 'label': 'US', 'value': '30' }, { 'label': 'China', 'value': '30' }] }";
// create chart instance
// parameter
// chrat type, chart id, chart widh, chart height, data format, data source
Chart column2d = new Chart("column2d", "first_chart", "700", "400", "json", jsonData);
//attach event
column2d.AddEvent("renderComplete", "onRenderComplete");
//render chart
Literal1.Text = column2d.Render();
}
}