深入學習 chart.js 的選項來製作漂亮的圖表。互動式圖表可以給你的數據視覺化提供很酷的展示方式。但是大多數開箱即用的解決方案用預設的選項並不能做出很絢麗的圖表。
這篇文章中,我會教你如何自訂 chart.js 選項來製作很酷的圖表。
我們需要:
Vue.js
vue-chart.js
vue-cli
使用vue-cli 來搭上基本架構,希望你已經安裝好了。我們使用 vue-chart.js 來作為 chart.js 的打包器。
vue init webpack awesome-charts
然後到工程目錄中安裝依賴:
cd awesome-charts && yarn install
新增vue-chartjs:
yarn add vue-chartjs -S
現在我們來建立第一個折現表。
touch src/components/LineChart.js && subl .
現在需要從 vue-chartjs 中引入折線表的基底表,建立元件。
在 mount() 函數中使用我們準備好的資料和選項來呼叫 renderChart()方法。
import {Line} from 'vue-chartjs' export default Line.extend({ mounted () { this.renderChart({ labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [ { label: 'Data One', backgroundColor: '#FC2525', data: [40, 39, 10, 40, 39, 80, 40] },{ label: 'Data Two', backgroundColor: '#05CBE1', data: [60, 55, 32, 10, 2, 12, 53] } ] }, {responsive: true, maintainAspectRatio: false}) } })
程式碼中,使用了一些實例資料和可選參數傳遞給 chart.js 的資料對象,並且設定 responsive:true,使得圖表會充滿外層容器。
之所以可以使用 renderChart() 方法是因為我們繼承了 BaseChart,這個方法和一些屬性都是在 BaseChart 中定義的。
ok,現在從App.vue 中把Hello.vue 刪掉,並且引入我們的圖表:
<template> <p id="app"> <p class="container"> <p class="Chart__list"> <p class="Chart"> <h2>Linechart</h2> <line-example></line-example> </p> </p> </p> </p> </template> <script> import LineExample from './components/LineChart.js' export default { name: 'app', components: { LineExample } } </script> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } .container { max-width: 800px; margin: 0 auto; } </style> CopyRaw
在終端機中執行dev 腳本,就可以看到圖表了。
yarn run dev
現在該做些美化工作了
以上是用Vue.js 和 Chart.js如何製作很炫的圖表的詳細內容。更多資訊請關注PHP中文網其他相關文章!