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
5.3.0
https://codesandbox.io/s/practical-joliot-vt6glv?file=/src/components/Echarts.vue
1、Set option normally
const option = { series: [ { name: "Access From", type: "pie", radius: "50%", data: [ { value: 1048, name: "Search Engine" }, { value: 735, name: "Direct" }, { value: 580, name: "Email" }, { value: 484, name: "Union Ads" }, { value: 300, name: "Video Ads" }, ], }, ], }; this.myChart.setOption(option);
2、Set labelLine to hide
setTimeout(() => { const option = { series: [ { name: "Access From", type: "pie", radius: "50%", data: [ { value: 1048, name: "Search Engine" }, { value: 735, name: "Direct" }, { value: 580, name: "Email" }, { value: 484, name: "Union Ads" }, { value: 300, name: "Video Ads" }, ], labelLine: { show: false, }, emphasis: { labelLine: { show: false, }, }, }, ], }; this.myChart.setOption(option); }, 5000);
LabelLine is not hidden when emphasis
LabelLine is hidden when emphasis
- OS: Windows 10 - Browser:Chrome 98 - Framework: Vue@2
No response
The text was updated successfully, but these errors were encountered:
ignore
Successfully merging a pull request may close this issue.
Version
5.3.0
Link to Minimal Reproduction
https://codesandbox.io/s/practical-joliot-vt6glv?file=/src/components/Echarts.vue
Steps to Reproduce
1、Set option normally
2、Set labelLine to hide
Current Behavior
LabelLine is not hidden when emphasis
Expected Behavior
LabelLine is hidden when emphasis
Environment
Any additional comments?
No response
The text was updated successfully, but these errors were encountered: