Files
sam-kd/load_stat_screen.php

107 lines
2.9 KiB
PHP
Raw Normal View History

<?php
require_once($_SERVER['DOCUMENT_ROOT'] . "/session.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/lib/mydb.php");
$pdo = db_connect();
$tablename = 'output';
$today = date("Y-m-d");
$monthAgo = date("Y-m-d", strtotime("-1 month"));
$sql = "SELECT outdate, screen_m2, slat_m2 FROM chandj.$tablename WHERE outdate BETWEEN date('$monthAgo') AND date('$today') AND is_deleted = '0' ";
try {
$stmh = $pdo->prepare($sql);
$stmh->execute();
$rows = $stmh->fetchAll(PDO::FETCH_ASSOC);
// var_dump($rows);
$chartData = [];
foreach ($rows as $row) {
$date = date("Y-m-d", strtotime($row['outdate'] ?? ''));
$area1 = intval(trim($row['screen_m2'] ?? 0)); // 빈값 대비
// 존재하지 않으면 0으로 초기화
if (!isset($chartData[$date])) {
$chartData[$date] = 0;
}
$chartData[$date] += $area1;
}
$jsonChartData_screen = json_encode($chartData);
} catch (PDOException $Exception) {
print "오류: " . $Exception->getMessage();
}
// var_dump($jsonChartData_screen);
?>
<div id="salesChart" style="height: 200px;"></div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const screenData = <?= $jsonChartData_screen ?>;
// console.log(screenData);
const sortedLabels = Object.keys(screenData).sort((a, b) => new Date(a) - new Date(b));
const sortedData = sortedLabels.map(label => parseFloat(screenData[label]));
Highcharts.chart('salesChart', {
chart: {
type: 'line'
},
title: {
text: '스크린 면적'
},
xAxis: {
categories: sortedLabels,
crosshair: true,
labels: {
formatter: function() {
const date = new Date(this.value);
return (date.getMonth() + 1) + '/' + date.getDate();
}
}
},
yAxis: {
min: 0,
title: {
text: '면적 (m²)'
}
},
tooltip: {
headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
pointFormatter: function() {
return '<tr><td style="color:' + this.series.color + ';padding:0">' + this.series.name + ': </td>' +
'<td style="padding:0;"><b>' + Highcharts.numberFormat(this.y, 2, '.', ',') + ' m²</b></td></tr>';
},
footerFormat: '</table>',
shared: true,
useHTML: true,
style: {
padding: '1px',
minWidth: '180px'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: true
}
},
series: [{
name: '면적',
data: sortedData,
color: 'blue' // Set the line color to green
}]
});
});
</script>