zhangwei
2 天以前 9488f2bcb346c32c64f2c4eb5814fece8726b363
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const T = {
    "color": [
        "#409EFF",
        "#36CE9E",
        "#f56e6a",
        "#626c91",
        "#edb00d",
        "#909399"
    ],
    'grid': {
        'left': '3%',
        'right': '3%',
        'bottom': '10',
        'top': '40',
        'containLabel': true
    },
    "legend": {
        "textStyle": {
            "color": "#999"
        },
        "inactiveColor": "rgba(128,128,128,0.4)"
    },
    "categoryAxis": {
        "axisLine": {
            "show": true,
            "lineStyle": {
                "color": "rgba(128,128,128,0.2)",
                "width": 1
            }
        },
        "axisTick": {
            "show": false,
            "lineStyle": {
                "color": "#333"
            }
        },
        "axisLabel": {
            "color": "#999"
        },
        "splitLine": {
            "show": false,
            "lineStyle": {
                "color": [
                    "#eee"
                ]
            }
        },
        "splitArea": {
            "show": false,
            "areaStyle": {
                "color": [
                    "rgba(255,255,255,0.01)",
                    "rgba(0,0,0,0.01)"
                ]
            }
        }
    },
    "valueAxis": {
        "axisLine": {
            "show": false,
            "lineStyle": {
                "color": "#999"
            }
        },
        "splitLine": {
            "show": true,
            "lineStyle": {
                "color": "rgba(128,128,128,0.2)"
            }
        }
    }
}
 
export default T