Skip to content

Commit c9b5373

Browse files
committed
Add example files
1 parent 5bbe0c0 commit c9b5373

File tree

4 files changed

+119
-0
lines changed

4 files changed

+119
-0
lines changed

.vscode/launch.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// IntelliSense を使用して利用可能な属性を学べます。
3+
// 既存の属性の説明をホバーして表示します。
4+
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch index.html",
9+
"type": "chrome",
10+
"request": "launch",
11+
"file": "${workspaceFolder}/example.html"
12+
}
13+
]
14+
}

example.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>Gantt Chart</title>
6+
</head>
7+
8+
<body>
9+
<canvas id="myChart"></canvas>
10+
<script type="text/javascript" src="./node_modules/chart.js/dist/Chart.bundle.min.js"></script>
11+
<script>
12+
var ctx = document.getElementById('myChart').getContext('2d');
13+
var chart = new Chart(ctx, {
14+
// The type of chart we want to create
15+
type: 'horizontalBar',
16+
17+
// The data for our dataset
18+
data: {
19+
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
20+
datasets: [{
21+
label: 'My First dataset',
22+
backgroundColor: 'rgb(255, 99, 132)',
23+
borderColor: 'rgb(255, 99, 132)',
24+
data: [0, 10, 5, 2, 20, 30, 45]
25+
}]
26+
},
27+
28+
// Configuration options go here
29+
options: {}
30+
});
31+
</script>
32+
</body>
33+
34+
</html>

package-lock.json

+49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "sample-chartjs",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/kannkyo/sample-chartjs.git"
12+
},
13+
"author": "kannkyo",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/kannkyo/sample-chartjs/issues"
17+
},
18+
"homepage": "https://github.com/kannkyo/sample-chartjs#readme",
19+
"dependencies": {
20+
"chart.js": "^2.8.0"
21+
}
22+
}

0 commit comments

Comments
 (0)