12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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/',
-
- rotateX: 0,
-
- rotateY: 0,
-
- rotateZ: 0,
-
- perspective: 0,
- skewX: 0,
- skewY: 0
- },
- customize: {
- fontSize: 20,
- fontWeight: 700,
- color: '#36474f'
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|