对于我的图表,我想在highcharts中设置其他数据。这个答案是一个很好的例子:
Set Additional Data to highcharts series
但是我该如何为JSON.parse源写这个呢?
series : [{
yAxis: 0,
name : 'Server-TPS',
data : JSON.parse(data.tps)
},
{
yAxis: 1,
name : 'Spieler-Anzahl',
data : JSON.parse(data.playercount)
}]
我想在工具栏中的playercount之后的特定时间添加一个JSON.parse(data.playername)。
图:http://redstoneworld.de/mc-status/diagramm/graph.php
在mysql-search之后,我将数据推送到$ json_encode:
array_push($array_playercount, array(strtotime($row['timestamp']) * 1000, $row['playercount']));
array_push($array_tps, array(strtotime($row['timestamp']) * 1000, $row['tps']));
array_push($array_playerlist, array(strtotime($row['timestamp']) * 1000, $row['playerlist']);
$json['playercount'] = json_encode($array_playercount, JSON_NUMERIC_CHECK);
$json['tps'] = json_encode($array_tps, JSON_NUMERIC_CHECK);
$json['playerlist'] = json_encode($array_playerlist, JSON_NUMERIC_CHECK);
echo json_encode($json, JSON_NUMERIC_CHECK);
感谢您的帮助。
〜罗伯特