antvis/G2

Do you want to work on this issue?

You can request for a bounty in order to promote it!

双Y轴 + 缩略轴,拖动缩略轴,meta设置X轴为false,会导致右Y轴数据和X轴错位 #6249

cornerxl posted onGitHub

import { DualAxes } from '@antv/g2plot';

const data = [ { year: '1991', value: 3, count: 10 }, { year: '1992', value: 4, count: 4 }, { year: '1993', value: 3.5, count: 5 }, { year: '1994', value: 5, count: 5 }, { year: '1995', value: 4.9, count: 4.9 }, { year: '1996', value: 6, count: 35 }, { year: '1997', value: 7, count: 7 }, { year: '1998', value: 9, count: 1 }, { year: '1999', value: 13, count: 20 }, ];

const dualAxes = new DualAxes('container', { data: [data, data], xField: 'year', yField: ['value', 'count'], geometryOptions: [ { geometry: 'line', color: '#5B8FF9', }, { geometry: 'line', color: '#5AD8A6', }, ], slider: { start: 0, end: 0.5 }, meta: { // type: 'linear', // year: false, nice: true, // range: [0, 0.5] } });

dualAxes.render();

以上为示例代码,以下为截图效果 image


Fund this Issue

$0.00
Funded
Only logged in users can fund an issue

Pull requests