| 123456789101112 |
- import type { FlexLayout, GuideComponentComponent as GCC, GuideComponentPosition as GCP } from '../runtime';
- export type LegendContinuousOptions = {
- layout?: FlexLayout;
- position?: GCP;
- title?: string | string[];
- [key: string]: any;
- };
- /**
- * Guide Component for continuous color scale.
- * @todo Custom style.
- */
- export declare const LegendContinuous: GCC<LegendContinuousOptions>;
|