Vue中使用echarts
@[Hgiao] (Vue中使用echarts )
第一步:目錄下使用命令列,初始化工程的 npm 環境並安裝 echarts(這裡前提是您已經安裝了 npm):
//npm
npm install echarts --save
第二步:Html
// html
<template>
<div style="width: 600px; height: 400px">
<div ref="tu" style="width: 600px; height: 400px"></div>
</div>
</template>`
第三步:scipt
//
<script>
import echarts from "echarts";
export default {
data() {
return {
options: [],
};
},
mounted() {
this.echartsInit();
},
methods: {
echartsInit() {
echarts.init(this.$refs.tu).setOption(
//以下內容可以在https://echarts.apache.org/examples/zh/index.html
//裡面選取你想要的型別,貼上即可
{
xAxis: {
type: "category",
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
},
yAxis: {
type: "value",
},
series: [
{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: "line",
},
],
}
);
},
},
};
</script>
相關文章
- vue中引入echartsVueEcharts
- 在vue腳手架中如何使用EChartsVueEcharts
- 在Vue專案中使用Echarts(三): Echarts中的其他常用圖VueEcharts
- (覆盤)Vue中如何使用v-echarts元件VueEcharts元件
- 在vue中,使用echarts的自定義主題VueEcharts
- vue + echartsVueEcharts
- vue使用Echarts繪製地圖VueEcharts地圖
- 【爬坑日記】vue中引入echarts,報錯ReferenceError: echarts is not definedVueEchartsError
- vue 中使用 echarts 即 v-chartsVueEcharts
- 如何在 Vue 專案中使用 echartsVueEcharts
- vue中vuex,echarts,地圖,ueditor的使用(一篇就夠)VueEcharts地圖
- 在vue-cli專案中使用echartsVueEcharts
- vue中echarts的動態渲染資料watchVueEcharts
- VUE中使用Echarts繪製地圖遷移VueEcharts地圖
- vue 將echarts封裝為元件一鍵使用VueEcharts封裝元件
- echarts 在 vue2 中的顯示問題EchartsVue
- vue專案使用Echarts製作專案工期甘特圖VueEcharts
- 教你如何透過vue實現echarts中的儀表盤VueEcharts
- 2024-06-21 如何在React/Vue中使用EChartsReactVueEcharts
- 在echarts3中使用字元雲EchartsS3字元
- 【vue3 + ts + echarts】封裝一個通用echarts元件-2.0版VueEcharts封裝元件
- Echarts的使用教程Echarts
- 簡單介紹Vue使用echarts定製特殊的儀表盤VueEcharts
- 使用freemarker將echarts圖片儲存到word中Echarts
- vue cli3.0 結合echarts3.0和地圖的使用方法VueEchartsS3地圖
- vue 中引用echarts 初始化init undefind問題(Cannot read property ‘init‘ of undefined)VueEchartsUndefined
- Echarts中Option屬性設定Echarts
- layui 中echarts實現圖表UIEcharts
- Vue全家桶+Echarts資料視覺化實踐VueEcharts視覺化
- vue+echarts報錯Cannot read property ‘init‘ of underfinedVueEcharts
- vue3+ts開啟echarts的正確方式VueEcharts
- Vue echarts 繫結事件重複執行問題VueEcharts事件
- vue+echarts實現地圖及飛線圖VueEcharts地圖
- 小程式mpvue-echarts的使用VueEcharts
- vue 元件中solt 插槽使用Vue元件
- Vue 使用中的小技巧Vue
- Vue中的$set的使用Vue
- Vue 折騰記 - (7) 寫一個挺不靠譜的Vue-Echarts元件VueEcharts元件