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中如何使用v-echarts元件VueEcharts元件
- vue使用Echarts繪製地圖VueEcharts地圖
- 如何在 Vue 專案中使用 echartsVueEcharts
- vue 中使用 echarts 即 v-chartsVueEcharts
- 【爬坑日記】vue中引入echarts,報錯ReferenceError: echarts is not definedVueEchartsError
- vue中vuex,echarts,地圖,ueditor的使用(一篇就夠)VueEcharts地圖
- VUE中使用Echarts繪製地圖遷移VueEcharts地圖
- vue中echarts的動態渲染資料watchVueEcharts
- 2024-06-21 如何在React/Vue中使用EChartsReactVueEcharts
- echarts 在 vue2 中的顯示問題EchartsVue
- ECharts的使用Echarts
- vue專案使用Echarts製作專案工期甘特圖VueEcharts
- 教你如何透過vue實現echarts中的儀表盤VueEcharts
- 使用freemarker將echarts圖片儲存到word中Echarts
- Echarts的使用教程Echarts
- 【vue3 + ts + echarts】封裝一個通用echarts元件-2.0版VueEcharts封裝元件
- 簡單介紹Vue使用echarts定製特殊的儀表盤VueEcharts
- ngx-echarts的使用Echarts
- vue cli3.0 結合echarts3.0和地圖的使用方法VueEchartsS3地圖
- vue 中引用echarts 初始化init undefind問題(Cannot read property ‘init‘ of undefined)VueEchartsUndefined
- vue+echarts報錯Cannot read property ‘init‘ of underfinedVueEcharts
- 在報表中可以如何使用 ECharts 做圖形展現?Echarts
- 小程式mpvue-echarts的使用VueEcharts
- Vue echarts 繫結事件重複執行問題VueEcharts事件
- vue+echarts實現地圖及飛線圖VueEcharts地圖
- vue3+ts開啟echarts的正確方式VueEcharts
- Vue全家桶+Echarts資料視覺化實踐VueEcharts視覺化
- Echarts中Option屬性設定Echarts
- layui 中echarts實現圖表UIEcharts
- angular中使用Echarts(環境搭建+簡單使用)AngularEcharts
- Vue 使用中的小技巧Vue
- vue 元件中solt 插槽使用Vue元件
- Echarts的tooltip中動態單位設定(使用formatter函式加工)EchartsORM函式
- vue render中jsx使用記錄VueJS
- Vue中async await的使用示例VueAI
- Vue 3.0 使用 Vuetify中的坑Vue