| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- const theme = {
- "color": [
- "#72ccff",
- "#f7c5a0"
- ],
- "backgroundColor": "#0f2226",
- "textStyle": {},
- "title": {
- "textStyle": {
- "color": "#38ff6e"
- },
- "subtextStyle": {
- "color": "#dddddd"
- }
- },
- "line": {
- "itemStyle": {
- // "borderWidth": "4"
- },
- "lineStyle": {
- "width": "2"
- },
- "symbolSize": 6,
- "symbol": "circle",
- "smooth": true
- },
- "categoryAxis": {
- "axisLine": {
- "show": true,
- "lineStyle": {
- "color": "#666666"
- }
- },
- "axisTick": {
- "show": true,
- "lineStyle": {
- "color": "#333"
- }
- },
- "axisLabel": {
- "show": true,
- "color": "#aaaaaa"
- },
- "splitLine": {
- "show": false
- }
- },
- "valueAxis": {
- "axisLine": {
- "show": true,
- "lineStyle": {
- "color": "#666666"
- }
- },
- "axisTick": {
- "show": true,
- "lineStyle": {
- "color": "#333"
- }
- },
- "axisLabel": {
- "show": true,
- "color": "#aaaaaa"
- },
- "splitLine": {
- "show": true,
- "lineStyle": {
- "color": "#666666"
- }
- }
- },
- "timeAxis": {
- "axisLine": {
- "show": true,
- "lineStyle": {
- "color": "#666666"
- }
- },
- "axisTick": {
- "show": false,
- "lineStyle": {
- "color": "#333"
- }
- },
- "axisLabel": {
- "show": true,
- "color": "#aaaaaa"
- },
- "splitLine": {
- "show": true,
- "lineStyle": {
- "color": [
- "#666666"
- ]
- }
- },
- "splitArea": {
- "show": false,
- "areaStyle": {
- "color": [
- "rgba(250,250,250,0.05)",
- "rgba(200,200,200,0.02)"
- ]
- }
- }
- },
- "legend": {
- "textStyle": {
- "color": "#ffffff"
- }
- },
- "tooltip": {
- "axisPointer": {
- "lineStyle": {
- "color": "#cccccc",
- "width": 1
- },
- "crossStyle": {
- "color": "#cccccc",
- "width": 1
- }
- }
- },
- "visualMap": {
- "color": [
- "#fc97af",
- "#72ccff",
- "#fc97af"
- ]
- },
- "dataZoom": {
- "backgroundColor": "rgba(255,255,255,0)",
- "dataBackgroundColor": "rgba(114,204,255,1)",
- "fillerColor": "rgba(114,204,255,0.2)",
- "handleColor": "#72ccff",
- "handleSize": "100%",
- "textStyle": {
- "color": "#333333"
- }
- },
- "markPoint": {
- "label": {
- "color": "#293441"
- },
- "emphasis": {
- "label": {
- "color": "#293441"
- }
- }
- }
- }
- export default [
- 'chalk',
- theme,
- ]
|