File "Interactive-candlestick-chart.php"
Full Path: /home/analogde/www/php/samples/pages/Interactive-candlestick-chart.php
File size: 1.62 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/* Include the `../src/fusioncharts.php` file that contains functions to embed the charts.*/
include("../includes/fusioncharts.php");
?>
<html>
<head>
<title>FusionCharts | Simple FusionTime Chart</title>
<!-- FusionCharts Library -->
<script type="text/javascript" src="//cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
</head>
<body>
<?php
$data = file_get_contents('https://s3.eu-central-1.amazonaws.com/fusion.store/ft/data/candlestick-chart-data.json');
$schema = file_get_contents('https://s3.eu-central-1.amazonaws.com/fusion.store/ft/schema/candlestick-chart-schema.json');
$fusionTable = new FusionTable($schema, $data);
$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'
}]");
// chart object
$Chart = new FusionCharts("timeseries", "MyFirstChart" , "700", "450", "chart-container", "json", $timeSeries);
// Render the chart
$Chart->render();
?>
<h3>Interactive candlestick chart</h3>
<div id="chart-container">Chart will render here!</div>
<br/>
<br/>
<a href="../index.php">Go Back</a>
</body>
</html>