123456789101112131415161718192021222324252627282930313233343536373839 |
- import { commonConfig } from '../../js/config'
- export const settingConfig = {
-
- displayOption: {
- dataAllocation: {
-
- enable: false
- }
- }
- }
- const customConfig = {
- type: 'horizontalLine',
- root: {
- version: '2023071001'
- },
- customize: {
-
- borderColor: 'rgba(131, 191, 246, 0)',
-
- borderWidth: 1,
-
- backgroundColor: '#007aff',
- colorType: 'single',
-
- gradientColor0: '#83bff6',
-
- gradientColor1: '#188df0',
-
- gradientDirection: 'to right',
-
- opacity: 100,
-
- height: 4
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|