index.d.ts 504 B

12345678910111213141516
  1. import { Adaptor } from '../../core/adaptor';
  2. import { Plot } from '../../core/plot';
  3. import { DualAxesOptions } from './types';
  4. export type { DualAxesOptions };
  5. export declare class DualAxes extends Plot<DualAxesOptions> {
  6. /** 图表类型: 双轴图 */
  7. type: string;
  8. /**
  9. * 获取 双轴图 默认配置
  10. */
  11. protected getDefaultOptions(): Partial<DualAxesOptions>;
  12. /**
  13. * 获取双轴图的适配器
  14. */
  15. protected getSchemaAdaptor(): Adaptor<DualAxesOptions>;
  16. }