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

条形图 x 为 date 对象会报错 #5060

Closed
pearmini opened this issue May 19, 2023 · 0 comments · Fixed by #5077
Closed

条形图 x 为 date 对象会报错 #5060

pearmini opened this issue May 19, 2023 · 0 comments · Fixed by #5077
Labels

Comments

@pearmini
Copy link
Member

  • 版本:5.0.8
import { Chart } from '@antv/g2';

const chart = new Chart({
  container: 'container',
  theme: 'classic',
  autoFit: true,
});

chart
  .interval()
  .data({
    type: 'fetch',
    value:
      'https://gw.alipayobjects.com/os/bmw-prod/fb9db6b7-23a5-4c23-bbef-c54a55fee580.csv',
  })
  .encode('x', () => new Date())
  .encode('y', 'frequency')
  .axis('y', { labelFormatter: '.0%' });

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

Successfully merging a pull request may close this issue.

1 participant