echarts Inversing font color of gouge scale

wlzqhblo  于 2022-11-03  发布在  Echarts
关注(0)|答案(3)|浏览(118)

One-line summary [问题简述]

Hi everyone, I'm facing a issue with font number scale. when i put clockwise false the interval of colors is right but the font get inverses color. any ideia how to solve?

( https://user-images.githubusercontent.com/30213232/45057890-504dcd00-b06d-11e8-8332-06498542370e.png )

Version & Environment [版本及环境]

  • ECharts version [ECharts 版本]:
  • Browser version [浏览器类型和版本]:
  • OS Version [操作系统类型和版本]:

Expected behaviour [期望结果]

ECharts option [ECharts配置项]

option = {

}

Other comments [其他信息]

rbl8hiat

rbl8hiat1#

Please provide code to reproduce this.

rvpgvaaj

rvpgvaaj2#

Here is an example option that creates the issue:
Setting clockwise to false does not effect axisLine

option = {
    series: [
        {
            clockwise:false,
            type: 'gauge',
            detail: {formatter:'{value}%'},
            data: [{value: 50}]
        }
    ]
};
yyyllmsg

yyyllmsg3#

@aminzabardast OK. I'll look into it.

相关问题