Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
samples
/
Pages
:
Interactive-candlestick-chart.aspx.cs
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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(); } }