legendContinuous.d.ts 399 B

123456789101112
  1. import type { FlexLayout, GuideComponentComponent as GCC, GuideComponentPosition as GCP } from '../runtime';
  2. export type LegendContinuousOptions = {
  3. layout?: FlexLayout;
  4. position?: GCP;
  5. title?: string | string[];
  6. [key: string]: any;
  7. };
  8. /**
  9. * Guide Component for continuous color scale.
  10. * @todo Custom style.
  11. */
  12. export declare const LegendContinuous: GCC<LegendContinuousOptions>;