小編給大家分享一下vue中怎么使用hightchats,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
專注于為中小企業(yè)提供網(wǎng)站設計、成都網(wǎng)站設計服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)漢陰免費做網(wǎng)站提供優(yōu)質的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上千多家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉變。vue中使用hightchats
1、安裝highcharts
npm install highcharts --save
2、在main.js中
import Highcharts from 'highcharts/highstock'; import HighchartsMore from 'highcharts/highcharts-more'; import HighchartsDrilldown from 'highcharts/modules/drilldown'; import Highcharts3D from 'highcharts/highcharts-3d'; import Highmaps from 'highcharts/modules/map'; HighchartsMore(Highcharts) HighchartsDrilldown(Highcharts); Highcharts3D(Highcharts); Highmaps(Highcharts); new Vue({ el: '#app', router, axios, components: { App }, template: '', methods:{ moreChart() { var options = this.getMoreOptions(this.type); if (this.chart) { this.chart.destroy(); }; // 初始化 Highcharts 圖表 this.chart = new Highcharts.Chart('highcharts-more', options); } } })
3、創(chuàng)建chart組件
4、其他組件引用圖表
import Chart from "./Chart"; export default { name: "HelloWorld", components: { Chart }, data() { return { msg: "Welcome to Your Vue.js App", id: "test", option: { credits: { enabled: false }, chart: { type: "line" }, title: { text: "月平均氣溫" //表頭文字 }, subtitle: { text: "數(shù)據(jù)來源: WorldClimate.com" //表頭下文字 }, xAxis: { //x軸顯示的內容 categories: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], plotbands: [ { //可以顯示一個方塊,如果需要的話可以更改透明度和顏色 from: 4.5, to: 6.5, color: "rgba(68,170,213,0)" //透明度和顏色 } ] }, yAxis: { //y軸顯示的內容 title: { text: "氣溫 (°C)" } }, plotOptions: { line: { dataLabels: { enabled: false // 開啟數(shù)據(jù)標簽 }, enableMouseTracking: false // 關閉鼠標跟蹤,對應的提示框、點擊事件會失效 } }, series: [ { //兩條數(shù)據(jù) name: "東京", data: [ 7.0, 6.9, 9.5, 14.5, 18.4, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6 ] }, { name: "倫敦", data: [ 3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8 ] } ] } } }
以上是“vue中怎么使用hightchats”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!