constants.js 463 B

1234567891011121314151617181920
  1. import { __assign } from "tslib";
  2. import { DEFAULT_TOOLTIP_OPTIONS } from '../tiny-line/constants';
  3. /**
  4. * 默认配置项
  5. */
  6. export var DEFAULT_OPTIONS = {
  7. appendPadding: 2,
  8. tooltip: __assign({}, DEFAULT_TOOLTIP_OPTIONS),
  9. // 默认样式
  10. color: 'l(90) 0:#E5EDFE 1:#ffffff',
  11. areaStyle: {
  12. fillOpacity: 0.6,
  13. },
  14. line: {
  15. size: 1,
  16. color: '#5B8FF9',
  17. },
  18. animation: {},
  19. };
  20. //# sourceMappingURL=constants.js.map