settingConfig.js 551 B

1234567891011121314151617181920212223242526272829303132
  1. import { commonConfig } from '../../js/config'
  2. export const settingConfig = {
  3. time: '',
  4. theme: 'dark',
  5. // 设置面板属性的显隐
  6. displayOption: {
  7. dataAllocation: {
  8. // 是否存在数据配置
  9. enable: false
  10. }
  11. }
  12. }
  13. const customConfig = {
  14. type: 'chartTab',
  15. root: {
  16. version: '2023071001'
  17. },
  18. customize: {
  19. tabList: [],
  20. fontSize: 14,
  21. fontWeight: 700,
  22. position: 'left',
  23. color: 'rgb(155 159 172)',
  24. lineColor: '#d0d2d6'
  25. }
  26. }
  27. export const dataConfig = {
  28. ...commonConfig(customConfig)
  29. }