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

[Bug] Error on switching theme of scatter chart #1630

Closed
zamhown opened this issue Nov 28, 2023 · 0 comments · Fixed by #1633
Closed

[Bug] Error on switching theme of scatter chart #1630

zamhown opened this issue Nov 28, 2023 · 0 comments · Fixed by #1633

Comments

@zamhown
Copy link
Member

zamhown commented Nov 28, 2023

image

import { isMobile } from 'react-device-detect';
import type { IAreaSeriesSpec, ICommonChartSpec, ITheme } from '../../../../src/index';
import { ThemeManager, default as VChart } from '../../../../src/index';
import { DataSet, DataView, csvParser } from '@visactor/vdataset';

const run = async () => {
  const spec = {
    type: 'scatter',
    xField: 'x',
    yField: 'y',
    sizeField: 'z',
    size: {
      type: 'linear',
      range: [20, 80]
    },
    axes: [
      { orient: 'bottom', type: 'linear', min: 60, max: 95 },
      { orient: 'left', type: 'linear', min: 0, max: 200 }
    ],
    label: {
      visible: true,
      position: 'center',
      overlap: {
        avoidBaseMark: false
      }
    },
    markLine: [
      {
        x: 65,
        label: {
          visible: true,
          position: 'end',
          text: 'Safe fat intake 65g/day',
          style: {
            textAlign: 'left',
            textBaseline: 'top',
            dx: 15
          },
          labelBackground: {
            style: {
              dx: 15
            }
          }
        }
      },
      {
        y: 50,
        label: {
          visible: true,
          position: 'end',
          text: 'Safe sugar intake 50g/day',
          style: {
            textAlign: 'right',
            textBaseline: 'bottom'
          }
        }
      }
    ],
    data: {
      id: 'data',
      values: [
        { x: 95, y: 95, z: 13.8, name: 'BE', country: 'Belgium' },
        { x: 86.5, y: 102.9, z: 14.7, name: 'DE', country: 'Germany' },
        { x: 80.8, y: 91.5, z: 15.8, name: 'FI', country: 'Finland' },
        { x: 80.4, y: 102.5, z: 12, name: 'NL', country: 'Netherlands' },
        { x: 80.3, y: 86.1, z: 11.8, name: 'SE', country: 'Sweden' },
        { x: 78.4, y: 70.1, z: 16.6, name: 'ES', country: 'Spain' },
        { x: 74.2, y: 68.5, z: 14.5, name: 'FR', country: 'France' },
        { x: 73.5, y: 83.1, z: 10, name: 'NO', country: 'Norway' },
        { x: 71, y: 93.2, z: 24.7, name: 'UK', country: 'United Kingdom' },
        { x: 69.2, y: 57.6, z: 10.4, name: 'IT', country: 'Italy' },
        { x: 68.6, y: 20, z: 16, name: 'RU', country: 'Russia' },
        { x: 65.5, y: 126.4, z: 35.3, name: 'US', country: 'United States' },
        { x: 65.4, y: 50.8, z: 28.5, name: 'HU', country: 'Hungary' },
        { x: 63.4, y: 51.8, z: 15.4, name: 'PT', country: 'Portugal' },
        { x: 64, y: 82.9, z: 31.3, name: 'NZ', country: 'New Zealand' }
      ]
    }
  } as ILineChartSpec;

  const cs = new VChart(spec, {
    dom: document.getElementById('chart') as HTMLElement,
    mode: isMobile ? 'mobile-browser' : 'desktop-browser',
    onError: e => {
      console.log(e);
    }
  });

  console.time('render');
  cs.renderSync();

  await cs.setCurrentTheme('dark');

  console.timeEnd('render');
  // setTimeout(() => {
  //   cs.release();
  // }, 50);
  // cs.updateFullDataSync([{ id: 'data1', values: [day] }]);
  (window as any).vchart = cs;
  console.log((window as any).encodeGraphic);
};
run();
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

Successfully merging a pull request may close this issue.

1 participant