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
sunburst旭日图Android机显示BUG,iPhone机显示正常。
iPhoneji机显示正常,如下图
Android显示异常,如下图 (如有需要请提供截图)
其中data为数据 function setOption(chart, data) { var option = { visualMap: { type: 'continuous', min: 0, max: 10, // show: false, inRange: { color: ['#2D5F73', '#538EA6', '#F2D1B3', '#F2B8A2', '#F28C8C'] } }, series: { radius: [0, '100%'], label: { rotate: 'radial' }, type: 'sunburst', sort: null, highlightPolicy: 'ancestor', data: data, levels: [{}, {}, {}, { nodeClick: false }] }, }; chart.setOption(option); }
function setOption(chart, data) { var option = { visualMap: { type: 'continuous', min: 0, max: 10, // show: false, inRange: { color: ['#2D5F73', '#538EA6', '#F2D1B3', '#F2B8A2', '#F28C8C'] } }, series: { radius: [0, '100%'], label: { rotate: 'radial' }, type: 'sunburst', sort: null, highlightPolicy: 'ancestor', data: data, levels: [{}, {}, {}, { nodeClick: false }] }, }; chart.setOption(option); }
The text was updated successfully, but these errors were encountered:
安卓 transform 的问题
Sorry, something went wrong.
就是安卓小程序上 transform 的实现有 bug,需要小程序团队解决
同样遇到相似的问题,在Android上文字的位置大部分不对
No branches or pull requests
简单描述问题:
sunburst旭日图Android机显示BUG,iPhone机显示正常。
预期效果:
iPhoneji机显示正常,如下图
实际效果:
Android显示异常,如下图
(如有需要请提供截图)
复现环境:
相关代码如下
其中data为数据
function setOption(chart, data) { var option = { visualMap: { type: 'continuous', min: 0, max: 10, // show: false, inRange: { color: ['#2D5F73', '#538EA6', '#F2D1B3', '#F2B8A2', '#F28C8C'] } }, series: { radius: [0, '100%'], label: { rotate: 'radial' }, type: 'sunburst', sort: null, highlightPolicy: 'ancestor', data: data, levels: [{}, {}, {}, { nodeClick: false }] }, }; chart.setOption(option); }
The text was updated successfully, but these errors were encountered: