control over font sizes
This commit is contained in:
parent
b4dca4ed9d
commit
50b098d606
21
main.html
21
main.html
@ -171,6 +171,7 @@
|
|||||||
<canvas id="chartId" aria-label="chart" height="500" width="700"></canvas>
|
<canvas id="chartId" aria-label="chart" height="500" width="700"></canvas>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
Chart.defaults.font.size = 20;
|
||||||
var chrt = document.getElementById("chartId").getContext("2d");
|
var chrt = document.getElementById("chartId").getContext("2d");
|
||||||
var chartId = new Chart(chrt, {
|
var chartId = new Chart(chrt, {
|
||||||
type: 'radar',
|
type: 'radar',
|
||||||
@ -193,8 +194,15 @@
|
|||||||
display: true
|
display: true
|
||||||
},
|
},
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 5
|
max: 5,
|
||||||
},
|
ticks: {
|
||||||
|
// forces step size to be 50 units
|
||||||
|
stepSize: 1,
|
||||||
|
font: {
|
||||||
|
size: 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
responsive: false,
|
responsive: false,
|
||||||
elements: {
|
elements: {
|
||||||
@ -203,7 +211,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
plugins: []
|
plugins: {
|
||||||
|
legend: {
|
||||||
|
labels: {
|
||||||
|
// This more specific font property overrides the global property
|
||||||
|
fontSize: 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user