溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

在Vue中使用highCharts繪制3d餅圖的方法

發(fā)布時(shí)間:2020-10-24 18:07:29 來源:腳本之家 閱讀:1022 作者:恩賜解脫 欄目:web開發(fā)

highcharts是國(guó)外知名基于javascript的圖表庫。由于中文官網(wǎng)的vue中使用highcharts配置繁瑣并且需要引入jquery作為依賴,所以棄用。

接下來,給各位伙伴簡(jiǎn)要的講敘下highcharts在vue中的使用和配置方法。

首先使用 npm在你的項(xiàng)目中安裝vue-highcharts

npm install vue-highcharts --save

由于vue-highcharts依賴于highcharts,我們還需要安裝后者

npm install highcharts --save

安裝完成后,進(jìn)入項(xiàng)目main.js進(jìn)行配置:

import highcharts from 'highcharts'
import VueHighCharts from 'vue-highcharts'

引入以上兩項(xiàng)之后,因?yàn)槲覀冃枰褂?d圖表,還需要引入:

import highcharts3d from 'highcharts/highcharts-3d'

調(diào)用3d圖表:

highcharts3d(highcharts)

OK,到此為止已經(jīng)在vue中配置好highcharts,接下來根據(jù)API繪制一份3d餅圖

新建一個(gè)餅圖的組件:

<template>
<div class="container">
  <div :id="id" :option="option"></div>
</div>
</template>
<script>
import HighCharts from 'highcharts'
export default {
  props: {
    id: {
      type: String
    },
      //option 是圖表的配置數(shù)據(jù)
    option: {
      type: Object
    }
  },
  mounted() {
    HighCharts.chart(this.id, this.option)
  }
}
</script>

<style scoped>
/* 容器 */  
.container {
width: 1000px;
height: 550px;
}
</style>

在需要使用餅圖的頁面里配置option數(shù)據(jù)

<template>
  <div class="charts">
    <pie :id="id" :option="option"></pie>
  </div>
</div>
</template>

<script>
import pie from '../components/pie'
import manes from '../components/list'
export default {
  components: {
    pie,
  },
  data() {
    return {
      id: 'test',
      option: {
        chart: {
          type: 'pie',//餅圖
           options3d: {
             enabled: true,//使用3d功能
             alpha: 60,//延y軸向內(nèi)的傾斜角度
             beta: 0,  
           }
        },
        title: {
          text: '測(cè)試用'//圖表的標(biāo)題文字
        },
        subtitle: {
          text: ''//副標(biāo)題文字
        },

      plotOptions: {
        pie: {
          allowPointSelect: true,//每個(gè)扇塊能否選中
          cursor: 'pointer',//鼠標(biāo)指針
          depth: 35,//餅圖的厚度
          dataLabels: {
            enabled: true,//是否顯示餅圖的線形tip
          }
        }
      },
        series: [
        {
          type: 'pie',
          name: '測(cè)試用1',//統(tǒng)一的前置詞,非必須
          data: [
            ['測(cè)試1',12],//模塊名和所占比,也可以{name: '測(cè)試1',y: 12}
            ['測(cè)試2',23],
            ['測(cè)試3',19],
            ['測(cè)試4',29]
          ]
         }
        ]
      }
    }
  },

}
</script>

<style scoped>

</style>

看下效果。

在Vue中使用highCharts繪制3d餅圖的方法

更多的配置說明可以到中文官網(wǎng)查看 https://www.hcharts.cn/

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI