constant.js 920 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. export var DEFAULT_OPTIONS = {
  2. // 默认按照 name 字段对颜色进行分类
  3. colorField: 'name',
  4. rectStyle: {
  5. lineWidth: 1,
  6. stroke: '#fff',
  7. },
  8. hierarchyConfig: {
  9. tile: 'treemapSquarify',
  10. },
  11. label: {
  12. fields: ['name'],
  13. layout: {
  14. type: 'limit-in-shape',
  15. },
  16. },
  17. tooltip: {
  18. showMarkers: false,
  19. showTitle: false,
  20. },
  21. // 下钻交互配置,默认不开启
  22. drilldown: {
  23. enabled: false,
  24. breadCrumb: {
  25. position: 'bottom-left',
  26. rootText: '初始',
  27. dividerText: '/',
  28. textStyle: {
  29. fontSize: 12,
  30. fill: 'rgba(0, 0, 0, 0.65)',
  31. cursor: 'pointer',
  32. },
  33. activeTextStyle: {
  34. fill: '#87B5FF',
  35. },
  36. },
  37. },
  38. };
  39. //# sourceMappingURL=constant.js.map