Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
cornerxl opened this issue May 29, 2024 · 0 comments

Comments

@cornerxl
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant