File "Adding-Reference-Line.php"
Full Path: /home/analogde/www/Design/fileman/Fusion/Picker02/js/integrations/php/samples/pages/Adding-Reference-Line.php
File size: 1.57 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/adding-a-reference-line-data.json');
$schema = file_get_contents('https://s3.eu-central-1.amazonaws.com/fusion.store/ft/schema/adding-a-reference-line-schema.json');
$fusionTable = new FusionTable($schema, $data);
$timeSeries = new TimeSeries($fusionTable);
$timeSeries->AddAttribute("caption", "{
text: 'Temperature readings in Italy'
}");
$timeSeries->AddAttribute("yAxis", "[{
plot: 'Temperature',
title: 'Temperature',
format:{
suffix: '°C',
},
referenceLine: [{
label: 'Controlled Temperature',
value: '10'
}]
}]");
// chart object
$Chart = new FusionCharts("timeseries", "MyFirstChart" , "700", "450", "chart-container", "json", $timeSeries);
// Render the chart
$Chart->render();
?>
<h3>Adding a reference line</h3>
<div id="chart-container">Chart will render here!</div>
<br/>
<br/>
<a href="../index.php">Go Back</a>
</body>
</html>