|
|
@@ -0,0 +1,522 @@
|
|
|
+(function (root, factory) {
|
|
|
+ if (typeof define === 'function' && define.amd) {
|
|
|
+ // AMD. Register as an anonymous module.
|
|
|
+ define(['exports', 'echarts'], factory);
|
|
|
+ } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {
|
|
|
+ // CommonJS
|
|
|
+ factory(exports, require('echarts'));
|
|
|
+ } else {
|
|
|
+ // Browser globals
|
|
|
+ factory({}, root.echarts);
|
|
|
+ }
|
|
|
+}(this, function (exports, echarts) {
|
|
|
+ var log = function (msg) {
|
|
|
+ if (typeof console !== 'undefined') {
|
|
|
+ console && console.error && console.error(msg);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ if (!echarts) {
|
|
|
+ log('ECharts is not Loaded');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ echarts.registerTheme('blue', {
|
|
|
+ "color": [
|
|
|
+ "#2d8bf8",
|
|
|
+ "#ebbb31",
|
|
|
+ "#fe7d6b",
|
|
|
+ "#46e4e8",
|
|
|
+ "#91c7ae",
|
|
|
+ "#749f83",
|
|
|
+ "#ca8622",
|
|
|
+ "#bda29a",
|
|
|
+ "#6e7074",
|
|
|
+ "#546570",
|
|
|
+ "#c4ccd3"
|
|
|
+ ],
|
|
|
+ "backgroundColor": "transparent",
|
|
|
+ "textStyle": {},
|
|
|
+ "title": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#ffffff"
|
|
|
+ },
|
|
|
+ "subtextStyle": {
|
|
|
+ "color": "#aaa"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "line": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "lineStyle": {
|
|
|
+ "normal": {
|
|
|
+ "width": 2
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "symbolSize": 4,
|
|
|
+ "symbol": "emptyCircle",
|
|
|
+ "smooth": false
|
|
|
+ },
|
|
|
+ "radar": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "lineStyle": {
|
|
|
+ "normal": {
|
|
|
+ "width": 2
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "symbolSize": 4,
|
|
|
+ "symbol": "emptyCircle",
|
|
|
+ "smooth": false
|
|
|
+ },
|
|
|
+ "bar": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "barBorderWidth": 0,
|
|
|
+ "barBorderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "barBorderWidth": 0,
|
|
|
+ "barBorderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "pie": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "scatter": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "boxplot": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "parallel": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "sankey": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "funnel": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "gauge": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "candlestick": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "color": "#c23531",
|
|
|
+ "color0": "#314656",
|
|
|
+ "borderColor": "#c23531",
|
|
|
+ "borderColor0": "#314656",
|
|
|
+ "borderWidth": 1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "graph": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderWidth": 0,
|
|
|
+ "borderColor": "#ccc"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "lineStyle": {
|
|
|
+ "normal": {
|
|
|
+ "width": 1,
|
|
|
+ "color": "#aaa"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "symbolSize": 4,
|
|
|
+ "symbol": "emptyCircle",
|
|
|
+ "smooth": false,
|
|
|
+ "color": [
|
|
|
+ "#2d8bf8",
|
|
|
+ "#ebbb31",
|
|
|
+ "#fe7d6b",
|
|
|
+ "#46e4e8",
|
|
|
+ "#91c7ae",
|
|
|
+ "#749f83",
|
|
|
+ "#ca8622",
|
|
|
+ "#bda29a",
|
|
|
+ "#6e7074",
|
|
|
+ "#546570",
|
|
|
+ "#c4ccd3"
|
|
|
+ ],
|
|
|
+ "label": {
|
|
|
+ "normal": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#eee"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "map": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "areaColor": "#eee",
|
|
|
+ "borderColor": "#444",
|
|
|
+ "borderWidth": 0.5
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "areaColor": "rgba(255,215,0,0.8)",
|
|
|
+ "borderColor": "#444",
|
|
|
+ "borderWidth": 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "label": {
|
|
|
+ "normal": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#000"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "rgb(100,0,0)"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "geo": {
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "areaColor": "#eee",
|
|
|
+ "borderColor": "#444",
|
|
|
+ "borderWidth": 0.5
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "areaColor": "rgba(255,215,0,0.8)",
|
|
|
+ "borderColor": "#444",
|
|
|
+ "borderWidth": 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "label": {
|
|
|
+ "normal": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#000"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "rgb(100,0,0)"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "categoryAxis": {
|
|
|
+ "axisLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#609cd1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisTick": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#609cd1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisLabel": {
|
|
|
+ "show": true,
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#609cd1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitLine": {
|
|
|
+ "show": false,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": [
|
|
|
+ "#ccc"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitArea": {
|
|
|
+ "show": false,
|
|
|
+ "areaStyle": {
|
|
|
+ "color": [
|
|
|
+ "rgba(250,250,250,0.3)",
|
|
|
+ "rgba(200,200,200,0.3)"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "valueAxis": {
|
|
|
+ "axisLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#4d79a1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisTick": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#4d79a1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisLabel": {
|
|
|
+ "show": true,
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#609cd1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": [
|
|
|
+ "#4d79a1"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitArea": {
|
|
|
+ "show": false,
|
|
|
+ "areaStyle": {
|
|
|
+ "color": [
|
|
|
+ "rgba(250,250,250,0.3)",
|
|
|
+ "rgba(200,200,200,0.3)"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "logAxis": {
|
|
|
+ "axisLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#4d79a1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisTick": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#4d79a1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisLabel": {
|
|
|
+ "show": true,
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#ffffff"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": [
|
|
|
+ "#4d79a1"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitArea": {
|
|
|
+ "show": false,
|
|
|
+ "areaStyle": {
|
|
|
+ "color": [
|
|
|
+ "rgba(250,250,250,0.3)",
|
|
|
+ "rgba(200,200,200,0.3)"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "timeAxis": {
|
|
|
+ "axisLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#4d79a1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisTick": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#4d79a1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "axisLabel": {
|
|
|
+ "show": true,
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#ffffff"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitLine": {
|
|
|
+ "show": true,
|
|
|
+ "lineStyle": {
|
|
|
+ "color": [
|
|
|
+ "#ccc"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "splitArea": {
|
|
|
+ "show": false,
|
|
|
+ "areaStyle": {
|
|
|
+ "color": [
|
|
|
+ "rgba(250,250,250,0.3)",
|
|
|
+ "rgba(200,200,200,0.3)"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "toolbox": {
|
|
|
+ "iconStyle": {
|
|
|
+ "normal": {
|
|
|
+ "borderColor": "#999"
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "borderColor": "#666"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "legend": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#6e9fcc"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "tooltip": {
|
|
|
+ "axisPointer": {
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#ccc",
|
|
|
+ "width": 1
|
|
|
+ },
|
|
|
+ "crossStyle": {
|
|
|
+ "color": "#ccc",
|
|
|
+ "width": 1
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "timeline": {
|
|
|
+ "lineStyle": {
|
|
|
+ "color": "#609cd1",
|
|
|
+ "width": 1
|
|
|
+ },
|
|
|
+ "itemStyle": {
|
|
|
+ "normal": {
|
|
|
+ "color": "#ff9e9e",
|
|
|
+ "borderWidth": 1
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "color": "#ff99ae"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "controlStyle": {
|
|
|
+ "normal": {
|
|
|
+ "color": "#abcdff",
|
|
|
+ "borderColor": "#5987c9",
|
|
|
+ "borderWidth": 0.5
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "color": "#abcdff",
|
|
|
+ "borderColor": "#5987c9",
|
|
|
+ "borderWidth": 0.5
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "checkpointStyle": {
|
|
|
+ "color": "#e43c59",
|
|
|
+ "borderColor": "rgba(194,53,49, 0.5)"
|
|
|
+ },
|
|
|
+ "label": {
|
|
|
+ "normal": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#609cd1"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#609cd1"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "visualMap": {
|
|
|
+ "color": [
|
|
|
+ "#bf444c",
|
|
|
+ "#d88273",
|
|
|
+ "#f6efa6"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "dataZoom": {
|
|
|
+ "backgroundColor": "rgba(47,69,84,0)",
|
|
|
+ "dataBackgroundColor": "rgba(47,69,84,0.3)",
|
|
|
+ "fillerColor": "rgba(167,183,204,0.4)",
|
|
|
+ "handleColor": "#a7b7cc",
|
|
|
+ "handleSize": "100%",
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#ffffff"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "markPoint": {
|
|
|
+ "label": {
|
|
|
+ "normal": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#eee"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "emphasis": {
|
|
|
+ "textStyle": {
|
|
|
+ "color": "#eee"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+}));
|