echarts的基本使用以及如何使用官方实例的方法 - z_xun

xiaoxiaoxun 2021-11-05 原文


echarts的基本使用以及如何使用官方实例的方法


<!-- 为 ECharts 准备一个具备大小(宽高)的 DOM -->
<div id="box" style="width: 600px;height:400px;"></div>   //如果需要改背景色直接在这里修改便可以

 

 
export default {
data() {
return {
//调用了eacharts官方实例的 ,这里写option的属性
// 指定图表的配置项和数据
option: {
backgroundColor: "#2c343c",

title: {
text: "Customized Pie",
left: "center",
top: 20,
textStyle: {
color: "#ccc"
}
},

tooltip: {
trigger: "item",
formatter: "{a} <br/>{b} : {c} ({d}%)"
},

visualMap: {
show: false,
min: 80,
max: 600,
inRange: {
colorLightness: [0, 1]
}
},
series: [
{
name: "访问来源",
type: "pie",
radius: "55%",
center: ["50%", "50%"],
data: [
{ value: 335, name: "直接访问" },
{ value: 310, name: "邮件营销" },
{ value: 274, name: "联盟广告" },
{ value: 235, name: "视频广告" },
{ value: 400, name: "搜索引擎" }
].sort(function(a, b) {
return a.value - b.value;
}),
roseType: "radius",
label: {
normal: {
textStyle: {
color: "rgba(255, 255, 255, 0.3)"
}
}
},
labelLine: {
normal: {
lineStyle: {
color: "rgba(255, 255, 255, 0.3)"
},
smooth: 0.2,
length: 10,
length2: 20
}
},
itemStyle: {
normal: {
color: "#c23531",
shadowBlur: 200,
shadowColor: "rgba(0, 0, 0, 0.5)"
}
},

animationType: "scale",
animationEasing: "elasticOut",
animationDelay: function(idx) {
return Math.random() * 200;
}
}
]
},
};
},

 

methods: {
 customized() {
            var myChart = echarts.init(document.getElementById(\’box\’));
            myChart.setOption(this.option,true);
        }
 

 

 
 
最后在main.js入口文件中 全局引入挂载
// 引入echarts
// import echarts from \'echarts\'
//挂载到实例对象上
// Vue.prototype.$echarts =echarts
 

 

 
 
==================================

需要加下面两句  这个是main全局引入的
import echarts from \'echarts\'
Vue.use(echarts)//全局使用echarts
 mounted() {
        this.customized();
        let _this = this;
        _this.$nextTick(() => {
            let bargraph = echarts.init(_this.$refs.barg);
            bargraph.setOption(_this.option);
            window.addEventListener(\’resize\’, bargraph.resize);
        });
    },

 

        // 客户概况(数据中心)
        getClientGeneralSituation() {
            const start = new Date(new Date(new Date().toLocaleDateString()).getTime());
            // console.log(parseInt(start.getTime() / 1000) - 86400, \'js 取得今天0点:\'); //Mon Dec 04 2017 00:00:00 GMT+0800 (中国标准时间)
            const end = new Date(new Date(new Date().toLocaleDateString()).getTime() + 24 * 60 * 60 * 1000 - 1);
            // console.log(parseInt(end.getTime() / 1000) - 86400, \'js 取得今天 23:59:59\'); //Mon Dec 04 2017 23:59:59 GMT+0800 (中国标准时间)
            this.$axios
                .post(\'/platformapi/company_wechat/getClientContactStatistics\', {
                    start_time: this.start_time ? this.start_time : parseInt(start.getTime() / 1000) - 86400,
                    end_time: this.end_time ? this.end_time : parseInt(end.getTime() / 1000) - 86400,
                    userid: this.suserIdArr,
                    section_id: this.sectionIdArr,
                    type: this.type //[必填] type==1 添加客户 type==2 与客户聊天 type==3 客户流失
                })
                .then(({ data }) => {
                    console.log(data, \'客户概况(数据中心)\');
                    if (!data.data.data) {
                        return;
                    }

                    this.option.legend.data = \'\';
                    this.option.xAxis.data = \'\';
                    this.total_count = data.data.total_count; //总人数
                    this.newly_increased = data.data.newly_increased; // 昨日新增
                    this.option.legend.data = data.data.data.ordertype;
                    this.option.xAxis.data = data.data.data.day;
                    // let Max = data.data.data.all[0].data[0];
                    // data.data.data.all.forEach((item, index) => {
                    //     if (index == 0) {
                    //         item.lineStyle = {
                    //             color: \'#4AB5E5\'
                    //         };
                    //     }
                    //     if (index == 1) {
                    //         item.lineStyle = {
                    //             color: \'#6BE6C1\'
                    //         };
                    //     }
                    //     if (index == 2) {
                    //         item.lineStyle = {
                    //             color: \'#626C91\'
                    //         };
                    //     }
                    //     item.data.forEach((node) => {
                    //         if (Max < node) {
                    //             Max = node;
                    //         }
                    //     });
                    // });
                    // this.option.yAxis.max = \'\';
                    // this.option.yAxis.max = Max;
                    this.series = [];
                    console.log(data.data.data.all, \'data.data.data.all\');
                    data.data.data.all.forEach((item, index) => {
                        // this.series.push({ name: item.name, type: item.type, stack: \'总量\', data: item.data, series: [] });
                        this.series[index] = { name: item.name, type: item.type, data: item.data, series: [] };
                    });
                    console.log(this.series, \'this.series1\');
                    console.log(this.type, \'this.type\');
                    this.series.forEach((item) => {
                        item.data.forEach((node) => {
                            if (this.type == 1) {
                                item.series.push(node.new_apply_cnt);
                                item.series.push(node.new_contact_cnt);
                            }
                            if (this.type == 2) {
                                item.series.push(node.chat_cnt);
                                item.series.push(node.message_cnt);
                                item.series.push(node.reply_percentage);
                                item.series.push(node.avg_reply_time);
                            }
                             if (this.type == 3) {
                                item.series.push(node.negative_feedback_cnt);
                            }
                        });
                    });
                    this.series.forEach((item) => {
                        item.data.forEach((node) => {
                            item.data = item.series;
                        });
                    });
                    // this.option.series = data.data.data.all;
                    // this.option.series = [1];
                    this.option.series = this.series;
                    this.customized();
                });
        },
        customized() {
            var myChart = echarts.init(document.getElementById(\'box\'));
            myChart.setOption(this.option, true);
        }

 

发表于
2019-07-12 21:11 
z_xun 
阅读(3057
评论(2
编辑 
收藏 
举报

 

版权声明:本文为xiaoxiaoxun原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/xiaoxiaoxun/p/11178431.html

echarts的基本使用以及如何使用官方实例的方法 - z_xun的更多相关文章

  1. xshell上传下载文件(Windows、Linux) – linkxu

    xshell上传下载文件(Windows、Linux) 2017-06-05 09:22  linkxu  阅 […]...

  2. java freemarker + word 模板 生成 word 文档 (变量替换,数据的循环,表格数据的循环,以及图片的替换)

    1,最近有个需求,动态生成 Word 文当并供前端下载,网上找了一下,发现基本都是用 word 生成 xml […]...

  3. 开箱Macbook Air 2020 & Mac上的第一篇文章

    开箱Macbook Air 2020 & Mac上的第一篇文章 我与苹果的故事 ​ 我相信搞技术的人大 […]...

  4. 直接拿来用!最火的iOS开源项目 – 周 金根

    直接拿来用!最火的iOS开源项目   1. AFNetworking 在众多iOS开源项目中,AFNetwor […]...

  5. Ubuntu16.04 安装Teamviewer – 王老头

    Ubuntu16.04 安装Teamviewer   有时需要远程控制ubuntu系统的电脑,Teamview […]...

  6. JS 中的自定义事件和模拟事件 – 前端旧约

    JS 中的自定义事件和模拟事件 在 JS 中模拟事件指的是模拟 JS 中定义的一些事件,例如点击事件,键盘事件 […]...

  7. 分库分表(2) — ShardingSphere(理论)

    ShardingSphere—理论 ShardingSphere在中小企业需要分库分表的时候用的会 […]...

  8. DRAM 内存介绍(三) – 迈克老狼2012

    DRAM 内存介绍(三) 参考资料:http://www.anandtech.com/show/3851/ev […]...

随机推荐

  1. eclipse 中使用 svn – 空明流光

    eclipse 中使用 svn 在eclipse中使用subclipse 下载与安装    在subclips […]...

  2. 很好用的一个翻译插件 – JHJ_BABY

    很好用的一个翻译插件 链接地址:http://labs.microsofttranslator.com/boo […]...

  3. 数据库基本操作 – 没事找个乐

    数据库基本操作  数据库、表、索引的定义 一、目的:通过本实验加深对SQL Server 2000环境下数据定 […]...

  4. FM/AM收音机原理

    收音机这东西很早就开始用了,但一直都没有了解过它的原理,听说是很简单。下面记录一些笔记。 1. 基本概念 收音 […]...

  5. 你的产品适不适合做微信小程序?你需要这篇产品逻辑分析

    .text-sm-title { font-size: 18px; font-weight: 700; col […]...

  6. bootstrap导入JavaScript插件

    Bootstrap的JavaScript插件可以单独导入到页面中,也可以一次性导入到页面中。因为在Bootst […]...

  7. 用segnet训练我自己的数据,实验笔记1——改变图片大小

    我的数据库是NYU vesion1,大小是640×480,长乘高,segnet用的数据库是480×360.如果 […]...

  8. (转) Android性能测试

    From: http://blog.csdn.net/sayangnala/article/details/5 […]...

展开目录

目录导航