123456789101112131415161718192021222324252627282930313233 |
- import { commonConfig } from '../../js/config'
- export const settingConfig = {
- theme: 'dark',
- displayOption: {
- dataAllocation: {
-
- enable: false
- }
- }
- }
- const customConfig = {
- type: 'iframeChart',
- root: {
- version: '2023071001',
- url: 'https://www.runoob.com/'
- },
- customize: {
- fontSize: 20,
- fontWeight: 700,
- color: '#36474f'
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|