File "Interactive-candlestick-chart.aspx.cs"

Full Path: /home/analogde/www/samples/Pages/Interactive-candlestick-chart.aspx.cs
File size: 1.55 KB
MIME-type: text/plain
Charset: utf-8

using FusionCharts.Charts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Pages_Interactive_candlestick_chart : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

        string schema, data;

        using (WebClient client = new WebClient())
        {
            data = client.DownloadString("https://s3.eu-central-1.amazonaws.com/fusion.store/ft/data/candlestick-chart-data.json");
            schema = client.DownloadString("https://s3.eu-central-1.amazonaws.com/fusion.store/ft/schema/candlestick-chart-schema.json");
        }

        FusionTable fusionTable = new FusionTable(schema, data);
        TimeSeries timeSeries = new TimeSeries(fusionTable);

        timeSeries.AddAttribute("caption", @"{ 
                                        text: 'Apple Inc. Stock Price'
                                      }");

        timeSeries.AddAttribute("yAxis", @"[{
												plot: {
												value: {
													open: 'Open',
													high: 'High',
													low: 'Low',
													close: 'Close'
												},
												    type: 'candlestick'
												},
												format: {
												    prefix: '$'
												},
												title: 'Stock Value'
											}]");

        // charttype, chartID, width, height, data format, TimeSeries object
        Chart chart = new Chart("timeseries", "first_chart", "800", "550", "json", timeSeries);
        Literal1.Text = chart.Render();
    }
}