Chart.js 自訂設計
type 是圖表的樣式
- 樣式有線圖、長條圖、圓餅圖、雷達圖 …
- 可使用樣式: https://www.chartjs.org/docs/latest/charts/
data 內放的是要用圖表呈現的資料名稱、數值
options 是設定個別樣式
1 | var ctx = document.getElementById('myChart').getContext('2d'); |
標題
1 | options: { |
資料的標題標籤
1 | options: { |
垂直軸標籤
1 | options: { |
相關說明
https://www.chartjs.org/docs/latest/developers/axes.html
動畫效果
1 | options: { |
動畫相關說明
https://www.chartjs.org/docs/latest/configuration/animations.html
easing 屬性還有其他可使用項目
https://www.chartjs.org/docs/latest/configuration/animations.html#easing