constant.d.ts 401 B

1234567891011121314151617181920212223
  1. /**
  2. * 分面图 默认配置项
  3. */
  4. export declare const DEFAULT_OPTIONS: {
  5. title: {
  6. style: {
  7. fontSize: number;
  8. fill: string;
  9. };
  10. };
  11. rowTitle: {
  12. style: {
  13. fontSize: number;
  14. fill: string;
  15. };
  16. };
  17. columnTitle: {
  18. style: {
  19. fontSize: number;
  20. fill: string;
  21. };
  22. };
  23. };