antvis/G2
The issue has been closed
【v5】左右位置的 legend 显示不全 #5294
Deathsteps posted onGitHub
问题描述
<img width="1122" alt="image" src="https://github.com/antvis/G2/assets/1549118/36a0e6c9-1c17-4e6a-b817-1dbb72858090">
放宽 legend width,又会导致排列错乱
<img width="1073" alt="image" src="https://github.com/antvis/G2/assets/1549118/8a2f666d-17c7-4985-b453-a9a379b819c2">
期望结果
左右位置的 legend 默认可以显示全
如何重现
官方代码修改
/**
* A recreation of this demo: https://observablehq.com/@d3/stacked-bar-chart
*/
import { Chart } from '@antv/g2';
const chart = new Chart({
container: 'container',
theme: 'classic',
autoFit: true,
paddingRight: 160,
});
chart
.interval()
.data({
type: 'fetch',
value:
'https://gw.alipayobjects.com/os/bmw-prod/f129b517-158d-41a9-83a3-3294d639b39e.csv',
format: 'csv',
})
.transform({ type: 'stackY' })
.transform({ type: 'sortX', by: 'y', reverse: true })
.encode('x', 'state')
.encode('y', 'population')
.encode('color', 'age')
.axis('x', {
labelSpacing: 4,
style: {
labelTransform: 'rotate(90)',
},
})
.axis('y', { labelFormatter: '~s' })
.legend({ color: {
position: 'right',
width: 90
}});
chart.render();
额外信息
- G2 5.0.15 版本