经常会见到小伙伴做出来的柱形图带有动态,闪烁的效果,小编本着好学好问(工作要求)的精神,终于找到了方法。下面就跟小编一起来看如何用echarts实现柱形图的闪烁效果吧。
1.echarts安装
npm install echarts
2.在node_modules中找到echarts依赖包
3.打开src->chart->bar->BarView.js
function updateStyle( el, data, dataIndex, itemModel, layout, seriesModel, isHorizontal, isPolar ) { var color = data.getItemVisual(dataIndex, 'color'); var opacity = data.getItemVisual(dataIndex, 'opacity'); var stroke = data.getVisual('borderColor'); var itemStyleModel = itemModel.getModel('itemStyle'); //声明一个变量 var twinkle = itemModel.getModel('emphasis.itemStyle.twinkle'); var hoverStyle = itemModel.getModel('emphasis.itemStyle').getBarItemStyle(); if (!isPolar) { el.setShape('r', itemStyleModel.get('barBorderRadius') || 0); } el.useStyle(zrUtil.defaults( { stroke: isZeroOnPolar(layout) ? 'none' : stroke, fill: isZeroOnPolar(layout) ? 'none' : color, opacity: opacity }, itemStyleModel.getBarItemStyle() )); var cursorStyle = itemModel.getShallow('cursor'); cursorStyle && el.attr('cursor', cursorStyle); var labelPositionOutside = isHorizontal ? (layout.height > 0 ? 'bottom' : 'top') : (layout.width > 0 ? 'left' : 'right'); if (!isPolar) { setLabel( el.style, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside ); } if (isZeroOnPolar(layout)) { hoverStyle.fill = hoverStyle.stroke = 'none'; } //使用动画animate函数,用js传参控制柱状图特效 if(twinkle){ el.animate('style', true) when(500, { borderWidth:10, borderColor:"red", barBorderRadius:5, lineWidth:7.5, opacity:0.4 }) .when(1500, { lineWidth:0, borderColor:"red", barBorderRadius:5, opacity:0.25 }) .start(); } graphic.setHoverStyle(el, hoverStyle); }
4.打开lib->chart->bar->BarView.js,做跟上面一样的修改
5.components/echarts/bar.vue文件:
<template> <div style="height:500px" ref="echart" id="bar">柱状图</div> </template> <script> export default { name: "bar", data() { return { option: null }; }, methods: { draw() { let myChart = this.$echarts.init(document.getElementById("bar")); this.option = { title: { text: "成交量", left: 10 }, xAxis: { type: "category", data: [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "151", "16", "17", "18", "19", "20" ] }, yAxis: { type: "value", min: 0, max: 100, splitNumber: 2 }, series: [ { data: [120, 200, 150, 80, 70, 110, 130], type: "bar", itemStyle: { color: new this.$echarts.graphic.LinearGradient(0, 0, 1, 1, [ { offset: 0, color: "rgba(159,230,184,0.7)" }, { offset: 0.5, color: "rgb(141,193,169)" }, { offset: 1, color: "rgb(115,163,115)" } ]), barBorderRadius: 5 }, label: { show: true, position: "top", textStyle: { color: "black", fontSize: 16 } }, emphasis: { itemStyle: { //颜色渐变函数LinearGradient,4和参数分别表示四个位置依次为左、下、右、上 color: new this.$echarts.graphic.LinearGradient(0, 0, 1, 1, [ { offset: 0, color: "rgba(221,107,102,0.7)" }, { offset: 0.8, color: "rgb(238,64,61)" }, { offset: 1, color: "rgb(186,39,38)" } ]), barBorderRadius: 5, borderColor: new this.$echarts.graphic.LinearGradient( 0, 0, 1, 1, [ { offset: 0, color: "rgba(221,107,102,0.7)" }, { offset: 0.8, color: "rgb(238,64,61)" }, { offset: 1, color: "rgb(186,39,38)" } ] ), borderWidth: 3, lineWidth: 2, twinkle: { //闪烁 enabled: true, //启用 period: 2000 //动画时间 } }, label: { show: true } } } ] }; let _self = this; setInterval(function() { _self.option.series[0].data = _self.$options.methods.getArrRandomly(20); console.log(_self.option.series[0].data); _self.option.series[0].data.forEach((item, curidx) => { //取消之前的高亮 myChart.dispatchAction({ type: "downplay", seriesIndex: 0, dataIndex: curidx }); if (item > 50) { myChart.dispatchAction({ type: "highlight", dataIndex: curidx }); } }); myChart.setOption(_self.option, true); }, 2000); window.addEventListener("resize", function() { myChart.resize(); }); }, getArrRandomly(len) { let arr = []; for (let i = len - 1; i >= 0; i--) { let itemIndex = Math.floor(Math.random() * 100); arr[i] = itemIndex; } return arr; } }, mounted() { this.draw(); } }; </script> <style scoped></style>来看一下最后的效果:
怎么样,是不是效果很酷炫,动态效果的柱形图更能吸引人的眼球,大家一起用echarts实际操作一下吧!
数据分析咨询请扫描二维码
若不方便扫码,搜微信号:CDAshujufenxi
在数据驱动决策的时代,掌握多样的数据分析方法,就如同拥有了开启宝藏的多把钥匙,能帮助我们从海量数据中挖掘出关键信息,本 ...
2025-03-06在备考 CDA 考试的漫漫征途上,拥有一套契合考试大纲的优质模拟题库,其重要性不言而喻。它恰似黑夜里熠熠生辉的启明星,为每一 ...
2025-03-05“纲举目张,执本末从。”若想在数据分析领域有所收获,一套合适的学习教材至关重要。一套优质且契合需求的学习教材无疑是那关 ...
2025-03-04以下的文章内容来源于刘静老师的专栏,如果您想阅读专栏《10大业务分析模型突破业务瓶颈》,点击下方链接 https://edu.cda.cn/go ...
2025-03-04在现代商业环境中,数据分析师的角色愈发重要。数据分析师通过解读数据,帮助企业做出更明智的决策。因此,考取数据分析师证书成为了许多人提升职业竞争力的选择。本文将详细介绍考取数据分析师证书的过程,包括了解证书种类和 ...
2025-03-03在当今信息化社会,大数据已成为各行各业不可或缺的宝贵资源。大数据专业应运而生,旨在培养具备扎实理论基础和实践能力,能够应 ...
2025-03-03数据分析师认证考试全面升级后,除了考试场次和报名时间,小伙伴们最关心的就是报名费了,报 ...
2025-03-032025年刚开启,知乎上就出现了一个热帖: 2024年突然出现的经济下行,使各行各业都感觉到压力山大。有人说,大环境越来越不好了 ...
2025-03-03大数据分析师培训旨在培养学员掌握大数据分析的基础知识、技术及应用能力,以适应企业对数据分析人才的需求。根据不同的培训需求 ...
2025-03-03小伙伴们,最近被《哪吒2》刷屏了吧!这部电影不仅在国内掀起观影热潮,还在全球范围内引发了关注,成为中国电影崛起的又一里程 ...
2025-03-03以下的文章内容来源于张彦存老师的专栏,如果您想阅读专栏《Python 数据可视化 18 讲(PyEcharts、Matplotlib、Seaborn)》,点 ...
2025-02-28最近,国产AI模型DeepSeek爆火,其创始人梁文峰走进大众视野。《黑神话:悟空》制作人冯骥盛赞DeepSeek为“国运级别的科技成果” ...
2025-02-271.统计学简介 听说你已经被统计学劝退,被Python唬住……先别着急划走,看完这篇再说! 先说结论,大多数情况下的学不会都不是知 ...
2025-02-27“我们的利润率上升了,但销售额却没变,这是为什么?” “某个业务的市场份额在下滑,到底是什么原因?” “公司整体业绩稳定, ...
2025-02-26在数据分析工作中,你可能经常遇到这样的问题: 从浏览到消费的转化率一直很低,那到底该优化哪里呢? 如果你要投放广告该怎么 ...
2025-02-25近来deepseek爆火,看看deepseek能否帮我们快速实现数据看板实时更新。 可以看出这对不知道怎么动手的小白来说是相当友好的,尤 ...
2025-02-25挖掘用户价值本质是让企业从‘赚今天的钱’升级为‘赚未来的钱’,同时让用户从‘被推销’变为‘被满足’。询问deepseek关于挖 ...
2025-02-25在当今这个数据驱动的时代,几乎每一个业务决策都离不开对数据的深入分析。而其中,指标波动归因分析更是至关重要的一环。无论是 ...
2025-02-25以下文章来源于数有道 ,作者数据星爷 SQL查询是数据分析工作的基础,也是CDA数据分析师一级的核心考点,人工智能时代,AI能为 ...
2025-02-25“最近复购率一直在下降,我们的营销力度不小啊,为什么用户还是走了?” “是不是广告投放的用户质量不高?还是我们的产品问题 ...
2025-02-25