antvis/G2
The issue has been closed
设置 padding 或者 size 之后设置 hide 为 transform #5602
pearmini posted onGitHub
/**
* A recreation of this demo: https://observablehq.com/@d3/bar-chart
*/
import { Chart } from '@antv/g2';
const chart = new Chart({
container: 'container',
autoFit: true,
paddingBottom: 10, // 设置了 bottom
});
chart
.interval()
.data({
type: 'fetch',
value:
'https://gw.alipayobjects.com/os/bmw-prod/fb9db6b7-23a5-4c23-bbef-c54a55fee580.csv',
})
.encode('x', 'letter')
.encode('y', 'frequency')
.axis('y', { labelFormatter: '.0%' })
.axis('x', {
labelFormatter: (d) => d + 'aaaaa',
transform: [{ type: 'hide' }], // 不需要设置这一行
});
chart.render();