echarts基本设置积累

1、修改坐标轴字体大小

柱状图:

xAxis: {
    axisLabel: {
        textStyle: {
            fontSize: '16',
        }
    }
}

饼状图:
series:{
    label:{
        textStyle: {
            fontSize: '16',
        }
    }
}

 

2、修改柱状图柱子颜色

series: [
    {
        itemStyle: {
            normal: {
                color: '#3aa1ff',
            }
        }
    }
]

 

3、柱状图悬浮添加透明背景色

tooltip: {
    trigger: 'axis',
    axisPointer: {
        type: 'shadow',
    },
}

 

4、Y轴加单位,及字体样式和对齐方式设置


yAxis: {
    name: '单位:个',
    nameTextStyle: {
        fontSize: 16,
        align: 'right'
    }
}

 

5、图例的横纵向排列方式修改、及图例字体样式设置
legend: {
    top: 'center',
    right: '2%',
    orient: 'vertical',

    icon:'circle',
    textStyle: {
        fontSize: '16'
    }
}

 

6、饼状图显示比例

series: [
    {
        label: {
            textStyle: {
                fontSize: '14',
            },
            formatter: '{b}: {d}' + '%',
        },
        data: this.fractionListData,
    }
]

  • {a}:系列名。
  • {b}:数据名。
  • {c}:数据值。
  • {d}:百分比。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值