kathy-wazowski opened a new issue #10344: 漏斗图 funnel 高亮样式不生效 URL: https://github.com/apache/incubator-echarts/issues/10344 不想要默认的高亮样式,而是 hover 上去颜色不变,在 series.data[0] 里设置相同的 color 不生效。新、旧写法都不生效。在外部设置也不生效。 代码如下: ` option = { "series": [ { "type": "funnel", "sort": "descending", "minHeight": 25, "minWidth": 20, "width": "60%", "left": "0", "top": "20%", "bottom": 0, "labelLine": { "lineStyle": { "color": "#D9D9D9" } }, emphasis: { itemstyle: { color: '#E6FCE6' } }, "data": [ { "name": "阶段1", "value": [ 100, 0.2 ], "itemStyle": { "normal": { color: '#E6FCE6' }, "emphasis": { color: '#E6FCE6' } } }, { "name": "阶段2", "value": [ 80, 0.5 ], "itemStyle": { "normal": { } } }, { "name": "阶段3", "value": [ 60, 0.64 ], "itemStyle": { "normal": { } } }, { "name": "阶段4", "value": [ 40, 0.25 ], "itemStyle": { "normal": { } } }, { "name": "阶段5", "value": [ 20, 0.15 ], "itemStyle": { "normal": { } } }, { "name": "阶段5", "value": [ 20, 0.15 ], "itemStyle": { "normal": { "height": "auto" } }, "label": { "show": false }, "labelLine": { "show": false } } ] } ] } `
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
