We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
visualMap.itemSymbol 以及 visualMap.inRange.symbolSize 无法按照文档介绍的方式工作。
visualMap.itemSymbol
visualMap.inRange.symbolSize
visualMap
'circle'
itemSymbol
inRange.symbol
'roundRect'
inRange.symbolSize
option = { visualMap: { type: 'piecewise', itemSymbol: 'circle' } }
可以在此官方实例中重现。 http://www.echartsjs.com/gallery/editor.html?c=doc-example/scatter-visualMap-piecewise
The text was updated successfully, but these errors were encountered:
@Ovilia - this is a duplicate issue for 5719
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
One-line summary [问题简述]
visualMap.itemSymbol
以及visualMap.inRange.symbolSize
无法按照文档介绍的方式工作。Version & Environment [版本及环境]
Expected behaviour [期望结果]
visualMap
时希望使用圆形 icon,参考文档 http://echarts.baidu.com/option.html#visualMap-piecewise.itemSymbol,将visualMap.itemSymbol
设为'circle'
,并没有起作用。itemSymbol
配置可能会被inRange.symbol
覆盖(即便并未设置inRange.symbol
,它的默认值'roundRect'
也会覆盖itemSymbol
,这不符合预期),因此设置inRange.symbol
为'circle'
,此时可以正常显示圆形图标,但inRange.symbolSize
不起作用。ECharts option [ECharts配置项]
Other comments [其他信息]
可以在此官方实例中重现。
http://www.echartsjs.com/gallery/editor.html?c=doc-example/scatter-visualMap-piecewise
The text was updated successfully, but these errors were encountered: