Files
2023-04-17 11:06:08 +09:00

53 lines
822 B
PHP

<div class="container">
<div class="subhead d-flex justify-content-between align-items-center">
<h2 class="mb-0">
분석
</h2>
<div class="">
</div>
</div>
<canvas id="myChart"></canvas>
</div>
<!--
<script>
$(document).ready(function(){
var ctx = document.getElementById('myChart').getContext('2d');
var chart = new Chart(ctx, {
// The type of chart we want to create
type: 'line',
// The data for our dataset
data: {
labels: ['1월', '2월', '3월', '4월', '5월', '6월', '7월'],
datasets: [{
label: '조회수 추이',
backgroundColor: '#e9f6fa',
borderColor: '#007bff',
data: [0, 10, 5, 2, 20, 30, 45]
}]
},
// Configuration options go here
options: {}
});
});
</script> -->