constant.d.ts 781 B

123456789101112131415161718192021222324252627282930313233343536
  1. export declare const DEFAULT_OPTIONS: {
  2. colorField: string;
  3. rectStyle: {
  4. lineWidth: number;
  5. stroke: string;
  6. };
  7. hierarchyConfig: {
  8. tile: "treemapSquarify";
  9. };
  10. label: {
  11. fields: string[];
  12. layout: {
  13. type: string;
  14. };
  15. };
  16. tooltip: {
  17. showMarkers: boolean;
  18. showTitle: boolean;
  19. };
  20. drilldown: {
  21. enabled: boolean;
  22. breadCrumb: {
  23. position: "bottom-left";
  24. rootText: string;
  25. dividerText: string;
  26. textStyle: {
  27. fontSize: number;
  28. fill: string;
  29. cursor: string;
  30. };
  31. activeTextStyle: {
  32. fill: string;
  33. };
  34. };
  35. };
  36. };