jQuery와 Chart.js로 막대 그래프 만들기
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" />
<title>Chart.js 棒グラフ</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.6.2/chart.min.js"></script>
<script src="bar_graph.js"></script>
</head>
<body>
<h1>Chart.js 棒グラフ</h1>
<canvas id="chart" height="200" width="400"></canvas>
<hr />
Dec/09/2021<p />
</body>
</html>
bar_graph.js
// ----------------------------------------------------------------------
// bar_graph.js
//
// May/16/2017
// ----------------------------------------------------------------------
jQuery (function ()
{
const config = {
type: 'bar',
data: barChartData,
responsive : true
}
const context = jQuery("#chart")
const chart = new Chart(context,config)
})
// ----------------------------------------------------------------------
const barChartData = {
labels : ["青森","岩手","秋田","宮城","山形","福島"],
datasets : [
{
label: "1年目",
backgroundColor: "rgba(179,181,198,0.5)",
data : [25,45,5,20,19,33]
},
{
label: "2年目",
backgroundColor: "rgba(255,99,132,0.5)",
data : [10,54,77,32,9,78]
}
]
}
// ----------------------------------------------------------------------
Reference
이 문제에 관하여(jQuery와 Chart.js로 막대 그래프 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ekzemplaro/items/01f735d7fd83d160c8dc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)