Skip to content

Instantly share code, notes, and snippets.

@L-potato
L-potato / chart.js-max-min
Last active November 16, 2016 14:33
chart.js-max-min
scales: {            yAxes: [{                ticks: {                                    max:200,                    min:30                                }            }]
          
@L-potato
L-potato / chart.js-bar
Last active November 16, 2016 13:37
chart.js-bar
<script>
var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
//グラフのタイプ指定
type: 'bar',
data: {
labels: ["シーズン1", "シーズン2", "シーズン3", "シーズン4", "シーズン5", "シーズン6"],
datasets: [{
label: '満足度',
data: [90, 95, 80, 92, 100, 28],
@L-potato
L-potato / canvas
Created November 16, 2016 12:26
canvas
<p>
<canvas id="myChart" width="600" height="400"></canvas>
</p>
@L-potato
L-potato / chart.js-CDN
Last active November 16, 2016 12:16
chart.js-CDN
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.bundle.js"></script>