settingConfig.js 532 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * @description: 外链配置
  3. * @Date: 2022-09-01 15:26:34
  4. * @Author: xingheng
  5. */
  6. import { commonConfig } from '../../js/config'
  7. export const settingConfig = {
  8. theme: 'dark',
  9. displayOption: {
  10. dataAllocation: {
  11. // 是否存在数据配置
  12. enable: false
  13. }
  14. }
  15. }
  16. const customConfig = {
  17. type: 'iframeChart',
  18. root: {
  19. url: 'https://www.runoob.com/'
  20. },
  21. customize: {
  22. fontSize: 20,
  23. fontWeight: 700,
  24. color: '#36474f'
  25. }
  26. }
  27. export const dataConfig = {
  28. ...commonConfig(customConfig)
  29. }