-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
问题描述
放宽 legend width,又会导致排列错乱
期望结果
左右位置的 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 版本
Metadata
Metadata
Assignees
Labels
No labels