G2Plot icon indicating copy to clipboard operation
G2Plot copied to clipboard

🐛 [BUG]设置timeCat,brush-x无法使用

Open jinxinkai opened this issue 1 year ago • 0 comments

设置timeCat,brush-x无法使用

📷 Step to reproduce

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

fetch('https://gw.alipayobjects.com/os/bmw-prod/1d565782-dde4-4bb6-8946-ea6a38ccf184.json')
  .then((res) => res.json())
  .then((data) => {
    const line = new Line('container', {
      data,
      padding: 'auto',
      xField: 'Date',
      yField: 'scales',
      xAxis: {
        type: 'timeCat',
      },
      interactions: [
        {
          type: 'brush-x'
        }
      ]
    });

    line.render();
  });

jinxinkai avatar Jul 12 '24 08:07 jinxinkai