constants.d.ts 474 B

12345678910111213141516171819202122
  1. /**
  2. * 仪表盘默认配置项
  3. */
  4. export declare const DEFAULT_OPTIONS: {
  5. percent: number;
  6. innerRadius: number;
  7. radius: number;
  8. color: string[];
  9. statistic: {
  10. title: false;
  11. content: {
  12. style: {
  13. fontSize: string;
  14. fontWeight: number;
  15. fill: string;
  16. textAlign: "center";
  17. textBaseline: "middle";
  18. };
  19. };
  20. };
  21. animation: {};
  22. };