<!--
@Description: 横向渐变柱状图
-->
<template>
<div ref="horizontal" class="w-full h-full"></div>
</template>
<script>
import * as echarts from 'echarts'
export default {
components: {},
props: ['data'],
data() {
return {}
},
computed: {},
watch: {
data: {
handler(){
this.initCharts();
},
}
},
created() {},
mounted() {
this.$nextTick(() => {
this.initCharts()
})
},
methods: {
initCharts() {
const myChart = echarts.init(this.$refs.horizontal)
var data = this.data
var colorList =[
['rgba(110,250,248,0.00)','rgba(110,250,248,0.80)'],
['rgba(110,250,248,0.00)','rgba(110,250,248,0.80)'],
['rgba(110,250,248,0.00)','rgba(110,250,248,0.80)'],
['rgba(110,250,248,0.00)','rgba(110,250,248,0.80)'],
['rgba(110,250,248,0.00)','rgba(110,250,248,0.80)'],
]
let idx = this.data.findIndex((item)=> Math.max.apply(null, this.data)=== item)
if (idx !== -1){
colorList[idx] = ['rgba(242,180,89,0.10)','rgba(231,162,110,0.70)']
}
var className = ['立项', '初设', '施工图计划', '用地审批', '批复']
var option = {
grid: {
left: '5%',
right: '5%',
bottom: '5%',
top: '5%',
containLabel: true
},
legend: {
show: false
},
tooltip: {
show: false,
trigger: 'axis',
axisPointer: {
type: 'none'
},
},
xAxis: {
axisLabel: {
color: '#6d756e', //字体颜色
width: 100
},
// show: false,
type: 'value',
splitLine: {
show: false, //刻度线
},
axisTick: {
show: false //刻度点
},
axisLine: {
show: false //是否显示坐标轴轴线
},
},
yAxis: [
{
type: 'category',
inverse: true,
interval: 0,
axisLabel: {
borderType: "solid",
padding: [7, 7, 7, 7],
fontSize: 14,
width: 100,
formatter:(e)=>{
if (e === className[idx]){
return `{b|${e}}`
}
return `{a|${e}}`
},
rich: {
a: {
align:'center',
width: 90,
color:'#6EE7BC',
height:28,
backgroundColor: "rgba(94,221,230,0.10)",
borderRadius: 4
},
b: {
align:'center',
width: 90,
color:'#E7A26E',
height:28,
backgroundColor: "rgba(231,162,110,0.2)",
borderRadius: 4
}
}
},
splitLine: {
show: false
},
axisTick: {
show: false
},
axisLine: {
show: false
},
data: className
},
],
series: [
{
type: 'bar',
stack: 'aa',
zlevel: 1,
itemStyle: {
normal: {
barBorderRadius: 0,
color: function (params){
var colorItem = colorList[params.dataIndex];
return new echarts.graphic.LinearGradient(1, 0, 0, 0, [
{
offset: 1,
color: colorItem[0]
},
{
offset: 0,
color: colorItem[1]
}
])
}
},
},
barWidth: 15,
data: data
},
]
}
myChart.setOption(option)
}
}
}
</script>
<style lang="scss" scoped></style>
echarts条形图 动态 设置标签背景和柱状图渐变颜色
转载请注明出处或者链接地址:https://www.qianduange.cn//article/9316.html
相关文章
-
jQuery是什么?如何使用?
-
大学生bootstrap框架网页作业成品 web前端大作业期末源码 航海王html jquery bootstrap响应式网页制作模板 学生海贼王动漫bootstrap框架网站作品
-
jQuery 上部分--头歌(educoder)实训作业题目及答案
-
js延迟加载的六种方式
-
1.electron之纯原生js/jquery的桌面应用程序(基础篇)
-
Antv X6.js 内容居中相关问题
-
jquery实现全选、反选、取消全部等操作(复选框checkbox)
-
记使用echarts绘制地图根据数据修改每个省份深浅颜色
-
echarts 立体柱状图
-
一个页面上多个echart图表的自适应问题,亲测有效!!!(作者是Vue2项目)
发布的文章
用JS生成本周日期代码
2024-04-18 17:04:15
js 递归函数
2024-05-31 10:05:46
jQuery是什么?如何使用?
2024-03-12 01:03:24
大学生bootstrap框架网页作业成品 web前端大作业期末源码 航海王html jquery bootstrap响应式网页制作模板 学生海贼王动漫bootstrap框架网站作品
2024-02-06 15:02:03
JavaWeb Jquery 完成图片表单数据上传,Java之内存泄漏调试学习与总结
2024-05-30 10:05:14
jQuery 上部分--头歌(educoder)实训作业题目及答案
2024-05-30 10:05:14
js延迟加载的六种方式
2024-05-30 10:05:51
1.electron之纯原生js/jquery的桌面应用程序(基础篇)
2024-05-30 10:05:25
SVG preserveAspectRatio 终极理解
2024-05-30 10:05:02
Antv X6.js 内容居中相关问题
2024-05-30 10:05:59
大家推荐的文章