| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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
|