echarts xAxis.axisLabel富backgroundColor,如何指定图像和颜色?

时间:2018-06-08 04:23:35

标签: echarts

xAxis: {
            axisLabel: {
                formatter: function (value, index) {

                        return '{weather' + index + '| }';

                },
                rich: {

                    weather0: {
                        height: 40,
                        align: 'center',
                        backgroundColor: {
                            image: weatherIcons.Sunny
                        },
                        // backgroundColor: 'rgba(0, 0, 0, .3)',
                    },
                },
            },
}

如何同时设置上述两个? (颜色rgba和图像链接)

由于

0 个答案:

没有答案