constant.d.ts 422 B

12345678910111213
  1. import { SunburstOptions } from './types';
  2. /**
  3. * 祖先节点,非 root 根节点
  4. */
  5. export declare const SUNBURST_ANCESTOR_FIELD = "ancestor-node";
  6. export declare const SUNBURST_Y_FIELD = "value";
  7. export declare const SUNBURST_PATH_FIELD = "path";
  8. /** 默认的源字段 */
  9. export declare const RAW_FIELDS: string[];
  10. /**
  11. * 旭日图 默认配置项
  12. */
  13. export declare const DEFAULT_OPTIONS: Partial<SunburstOptions>;