index.d.ts 569 B

123456789101112131415161718192021
  1. import { Adaptor } from '../../core/adaptor';
  2. import { Plot } from '../../core/plot';
  3. import { ChordOptions } from './types';
  4. export type { ChordOptions };
  5. /**
  6. * 弦图 Chord
  7. */
  8. export declare class Chord extends Plot<ChordOptions> {
  9. /**
  10. * 获取 面积图 默认配置项
  11. * 供外部使用
  12. */
  13. static getDefaultOptions(): Partial<ChordOptions>;
  14. /** 图表类型 */
  15. type: string;
  16. protected getDefaultOptions(): Partial<ChordOptions>;
  17. /**
  18. * 获取适配器
  19. */
  20. protected getSchemaAdaptor(): Adaptor<ChordOptions>;
  21. }