legendCategory.d.ts 499 B

123456789101112131415
  1. import type { FlexLayout, GuideComponentComponent as GCC, GuideComponentOrientation as GCO, GuideComponentPosition as GCP } from '../runtime';
  2. export type LegendCategoryOptions = {
  3. dx?: number;
  4. dy?: number;
  5. labelFormatter?: (d: any) => string;
  6. layout?: FlexLayout;
  7. orientation?: GCO;
  8. position?: GCP;
  9. title?: string | string[];
  10. [key: string]: any;
  11. };
  12. /**
  13. * Guide Component for ordinal color scale.
  14. */
  15. export declare const LegendCategory: GCC<LegendCategoryOptions>;