DorisOu opened a new issue #10545: legend切换两张柱状图,tooltip显示的数据不正确 URL: https://github.com/apache/incubator-echarts/issues/10545 app.title = '坐标轴刻度与标签对齐'; option = { color: ['#3398DB'], tooltip : { trigger: 'axis', axisPointer : { // 坐标轴指示器,坐标轴触发有效 type : 'shadow' // 默认为直线,可选为:'line' | 'shadow' } }, legend:{ selectedMode: 'single', data:[{ name:'广东' },{ name:'省外' }] }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis : [ {id:'广东',data:['广州','珠海','中山']}, {id:'省外',data:['北京','上海','杭州']}, ], yAxis : { type:'value' }, series : [ { name:'广东', type:'bar', barWidth: '60%', data:[10, 52, 200] },{ name:'省外', type:'bar', barWidth: '60%', data:[1, 5, 10] } ] };
---------------------------------------------------------------- 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]
