码迷,mamicode.com
首页 > Web开发 > 详细

在 webpack 中使用 ECharts

时间:2020-07-11 22:55:23      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:指定   wchar   prot   try   com   code   etop   default   height   

echarts教程

Webpack 是目前比较流行的模块打包工具,你可以在使用 webpack 的项目中轻松的引入和打包 ECharts,这里假设你已经对 webpack 具有一定的了解并且在自己的项目中使用。

可以使用国内的淘宝镜像。

npm install -g cnpm --registry=https://registry.npm.taobao.org

cnpm install echarts -S

全局引入ECharts

通过 npm 上安装的 ECharts 和 zrender 会放在node_modules目录下。可以直接在项目代码中 require(‘echarts‘) 得到 ECharts。

我们安装完成之后,可以在 main.js 中全局引入 echarts

import echarts from "echarts";
Vue.prototype.$echarts = echarts;

在.vue中编辑

<template>
<div id="app">
    <div id="main" style="width: 600px;height:400px;"></div>
</div>
</template>
export default {
name: "app",
methods: {
    drawChart() {
    // 基于准备好的dom,初始化echarts实例
    let myChart = this.$echarts.init(document.getElementById("main"));
    // 指定图表的配置项和数据
    let option = {
        title: {
        text: "ECharts 入门示例"
        },
        tooltip: {},
        legend: {
        data: ["销量"]
        },
        xAxis: {
        data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
        },
        yAxis: {},
        series: [
        {
            name: "销量",
            type: "bar",
            data: [5, 20, 36, 10, 10, 20]
        }
        ]
    };
    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);
    }
},
mounted() {
    this.drawChart();
}
};
</script>

按需引入 ECharts 图表和组件

默认使用 require(‘echarts‘) 得到的是已经加载了所有图表和组件的 ECharts 包,因此体积会比较大,如果在项目中对体积要求比较苛刻,也可以只按需引入需要的模块。

例如上面示例代码中只用到了柱状图,提示框和标题组件,因此在引入的时候也只需要引入这些模块,可以有效的将打包后的体积从 400 多 KB 减小到 170 多 KB。

// 引入 ECharts 主模块
var echarts = require(‘echarts/lib/echarts‘);
// 引入柱状图
require(‘echarts/lib/chart/bar‘);
// 引入提示框和标题组件
require(‘echarts/lib/component/tooltip‘);
require(‘echarts/lib/component/title‘);

// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById(‘main‘));
// 绘制图表
myChart.setOption({
    title: {
        text: ‘ECharts 入门示例‘
    },
    tooltip: {},
    xAxis: {
        data: [‘衬衫‘, ‘羊毛衫‘, ‘雪纺衫‘, ‘裤子‘, ‘高跟鞋‘, ‘袜子‘]
    },
    yAxis: {},
    series: [{
        name: ‘销量‘,
        type: ‘bar‘,
        data: [5, 20, 36, 10, 10, 20]
    }]
});

可以按需引入的模块列表见 https://github.com/apache/incubator-echarts/blob/master/index.js

第二种方法,使用 Vue-ECharts 组件

cnpm install vue-echarts -S

使用组件

<template>
<div id="app">
    <v-chart class="my-chart" :options="bar"/>
</div>
</template>
<script>
import ECharts from "vue-echarts/components/ECharts";
import "echarts/lib/chart/bar";
export default {
name: "App",
components: {
    "v-chart": ECharts
},
data: function() {
    return {
    bar: {
        title: {
        text: "ECharts 入门示例"
        },
        tooltip: {},
        legend: {
        data: ["销量"]
        },
        xAxis: {
        data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
        },
        yAxis: {},
        series: [
        {
            name: "销量",
            type: "bar",
            data: [5, 20, 36, 10, 10, 20]
        }
        ]
    }
    };
}
};
</script>
<style>
.my-chart {
width: 800px;
height: 500px;
}
</style>

在 webpack 中使用 ECharts

标签:指定   wchar   prot   try   com   code   etop   default   height   

原文地址:https://www.cnblogs.com/justblue/p/13285831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!