constant.d.ts 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export declare const Y_FIELD = "$$yField$$";
  2. export declare const DIFF_FIELD = "$$diffField$$";
  3. export declare const ABSOLUTE_FIELD = "$$absoluteField$$";
  4. export declare const IS_TOTAL = "$$isTotal$$";
  5. /**
  6. * 瀑布图 默认配置项
  7. */
  8. export declare const DEFAULT_OPTIONS: {
  9. /** default: show label */
  10. label: {};
  11. /** default: show leaderLine */
  12. leaderLine: {
  13. style: {
  14. lineWidth: number;
  15. stroke: string;
  16. lineDash: number[];
  17. };
  18. };
  19. /** default: show total */
  20. total: {
  21. style: {
  22. fill: string;
  23. };
  24. };
  25. interactions: {
  26. type: string;
  27. }[];
  28. risingFill: string;
  29. fallingFill: string;
  30. waterfallStyle: {
  31. fill: string;
  32. };
  33. yAxis: {
  34. grid: {
  35. line: {
  36. style: {
  37. lineDash: number[];
  38. };
  39. };
  40. };
  41. };
  42. };