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
如题,应该是个小 bug ? 可将下面代码在官网运行一下。
series[i]-graph.categories[i] 中的 symbol 和 symbolSize 可以正确作用
option = { title: { text: 'Graph 简单示例' }, series : [ { type: 'graph', layout: 'none', data: [{ name: '节点1', x: 300, y: 300, category: 0 }, { name: '节点2', x: 800, y: 300, category: 1 }], links: [{ source: 0, target: 1 }], categories: [{ symbol:'diamond', symbolSize:50, itemStyle: { normal: { color: "orange", } } },{ symbol:'rect', symbolSize:50, itemStyle: { normal: { color: "green", } } }] } ] };
The text was updated successfully, but these errors were encountered:
Duplicate of #5969
Sorry, something went wrong.
Merge pull request #9171 from Vvvickie/master
93f5aac
fix #8009 & #5969, symbol symbolSize and opacity setting for category itemStyle in graph
Successfully merging a pull request may close this issue.
One-line summary [问题简述]
如题,应该是个小 bug ?
可将下面代码在官网运行一下。
Version & Environment [版本及环境]
Expected behaviour [期望结果]
series[i]-graph.categories[i] 中的 symbol 和 symbolSize 可以正确作用
ECharts option [ECharts配置项]
Other comments [其他信息]
The text was updated successfully, but these errors were encountered: