0
私はPHPを使用してウェブサイトを作成し、私はダッシュボードを持っています。私のダッシュボードにはチャートがあります。データをレンダリングするためにハイチャートを使いました。私は自分のデータを表示する際に問題があります。はい、ハイチャートにデータを表示できますが、正しく表示することはできません。 私は私の質問に問題があると思います。あなたは私のダッシュボードに見ることができるようにPHP Highcharts Group日付で
。 2017年8月1日が最新の日付ですが、その場所は古いものです。今、私は、最新の日付が正面にあるか古い日付の前にあるかを知りたい。
これが私のクエリです:
<?php
require_once('includes/database.php');
$stmt = mysqli_prepare($con, "SELECT date_format(entry_date, '%d-%b-%y')
as pDate, sum(doc_count) as pAmount FROM report_details GROUP BY pDate
DESC");
$result = array('day' => array(), 'amount' => array());
if ($stmt) {
mysqli_stmt_execute($stmt);
mysqli_stmt_bind_result($stmt, $day, $amount);
while (mysqli_stmt_fetch($stmt)) {
$result['day'][] = $day;
$result['amount'][] = (int)$amount;
}
mysqli_stmt_close($stmt);
}
?>
そして、これは私のHighchartsです:
<script type="text/javascript">
window.onload = function() {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
backgroundColor: {
linearGradient: [0, 0, 500, 500],
stops: [
[0, 'rgb(38,50,56)'],
[1, 'rgb(84,110,122)']
]
},
type: 'line',
borderColor: '#37474f',
borderWidth: 2,
},
title: {
text: 'Document Saved Per day',
style:{
font: 'bold 25px "Trebuchet MS", Verdana, sans-serif',
color: 'white'
}
},
xAxis: {
max:13,
categories: <?php echo json_encode($result['day']) ?>,
crosshair: true,
labels: {
style: {
color: 'white',
font: 'bold 13px "Trebuchet MS", Verdana, sans-serif'
}
}
},
yAxis: {
min:0,
max:100,
labels: {
style: {
color: 'white',
fontSize: '15px'
}
},
gridLineColor: 'white',
title: {
text:'Documents',
style: {
color:'white',
font: 'bold 20px "Trebuchet MS", Verdana, sans-serif'
}
}
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
color: '#85DEFC',
name: 'Documents',
data: <?php echo json_encode($result['amount']) ?>
}]
});
};
</script>