我想从excel文件(info.xlsx)向highcharts提供数据输入。我在php中编写了一个代码,它从excel文件获取数据并将其转换为JSON,我的php代码运行完美,并以JSON格式提供输出。我想将此输入提供给highcharts,每当我更改数据时,它都应该相应地更新自己。我看过这个来源的演示图表(http://www.highcharts.com/demo/pie-basic)。在这个源代码开发人员已经在代码中嵌入了样本数据,我想从excel文件中提供数据系列。我正在分享我的php文件和js文件。我需要建议。
threeG.php //它需要xlsx文件并生成它的json
<?php
header('Cache-Control: no-cache, must-revalidate');
header("Expires: Sat,26 Jul 1997 05:00:00 GMT");
header('Content-type: application/json');
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
require_once('phpexcel/Classes/PHPExcel/IOFactory.php');
if(!file_exists("info.xlsx"))
{
die("No File Exist");
}
$objPHPExcel = phpexcel_IOFactory::load("info.xlsx");
$objWorkSheet= $objPHPExcel->getActiveSheet();
define('Days',7);
$info=array();
$count=array();
$threeG_info= array($info,$count);
for ($col=0; $col < count($threeG_info); $col++)
{
for ($row=1;$row<= Days+1;$row++)
{
$threeG_info[$col][$row-1]= $objWorkSheet-> getCellByColumnAndRow($col,$row)->getValue();
}
}
echo json_encode($threeG_info);
?>
这是我的js文件。从我的excel文件中我想要输入的内容。
$(function () {
$('#container').highcharts({
chart: {
plotBackgroundColor: null,
plotBorderWidth: 1,//null,
plotShadow: false
},
title: {
text: '3G Information'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: {
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
}
}
}
},
series: [{
type: 'pie',
name: 'Pie share',
data: [
**Want to give input here**
]
}]
});
});
$.ajax({
url: "threeG.php",
cache:false,
type: 'json'
}).success(function(data)
{console.log(data);
}).error(function()
{
alert('Error retrieving information');
});
答案 0 :(得分:-1)
只需在$.ajax()
的回调中创建图表,如下所示:
$.ajax({
url: "threeG.php",
cache:false,
type: 'json'
}).success(function(data) {
$('#container').highcharts({
// some options..
series: [{
data: data
}]
});
}).error(function(){
alert('Error retrieving information');
});