File "AreaChart-With-Time-Axis.php"
Full Path: /home/analogde/www/php/samples/pages/AreaChart-With-Time-Axis.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/area-chart-with-time-axis-data.json');
$schema = file_get_contents('https://s3.eu-central-1.amazonaws.com/fusion.store/ft/schema/area-chart-with-time-axis-schema.json');
$fusionTable = new FusionTable($schema, $data);
$timeSeries = new TimeSeries($fusionTable);
$timeSeries->AddAttribute("chart", "{
showLegend: 0
}");
$timeSeries->AddAttribute("caption", "{
text: 'Daily Visitors Count of a Website'
}");
$timeSeries->AddAttribute("yAxis", "[{
plot: {
value: 'Daily Visitors',
type: 'area'
},
title: 'Daily Visitors (in thousand)'
}]");
// chart object
$Chart = new FusionCharts("timeseries", "MyFirstChart" , "700", "450", "chart-container", "json", $timeSeries);
// Render the chart
$Chart->render();
?>
<h3>Area chart with time axis</h3>
<div id="chart-container">Chart will render here!</div>
<br/>
<br/>
<a href="../index.php">Go Back</a>
</body>
</html>