index.d.ts 614 B

123456789101112131415161718192021222324
  1. import { Adaptor } from '../../core/adaptor';
  2. import { Plot } from '../../core/plot';
  3. import './interactions';
  4. import { MixOptions } from './types';
  5. export type { MixOptions };
  6. /**
  7. * 多图层图形,释放 G2 80% 的功能,可以用来做:
  8. * 1. 图层叠加的图:
  9. * - 折线 + 置信度区间迭代
  10. * - 嵌套饼图
  11. * - ...
  12. * 2. 图层划分的图
  13. * - 多维图
  14. * - 柱饼组合图
  15. * - ...
  16. */
  17. export declare class Mix extends Plot<MixOptions> {
  18. /** 图表类型 */
  19. type: string;
  20. /**
  21. * 获取适配器
  22. */
  23. protected getSchemaAdaptor(): Adaptor<MixOptions>;
  24. }