apache / echarts

Apache ECharts is a powerful, interactive charting and data visualization library for browser
https://echarts.apache.org
Apache License 2.0
60.21k stars 19.6k forks source link

backgroundColor:'none'不能正常消除背景色 #7957

Closed TianXinX closed 4 years ago

TianXinX commented 6 years ago

One-line summary [问题简述]

使用dark主题,默认具有背景颜色 更新到echarts4后 配置backgroundColor:'none' 背景色为纯黑色 更新前使用版本3.7.0,可以正常消除背景颜色

Version & Environment [版本及环境]

Expected behaviour [期望结果]

希望可以支持backgroundColor:'none'的情况下无背景色

ECharts option [ECharts配置项]

option = {
   backgroundColor:'none',
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [820, 932, 901, 934, 1290, 1330, 1320],
        type: 'line'
    }]
}

Other comments [其他信息]

100pah commented 6 years ago

可设为 null 清除颜色。

stale[bot] commented 4 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.