123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- var theme_avue = {
- version: 1,
- themeName: "avue",
- theme: {
- seriesCnt: "4",
- backgroundColor: "rgba(0,0,0,0)",
- titleColor: "#516b91",
- subtitleColor: "#93b7e3",
- textColorShow: false,
- textColor: "#333",
- markTextColor: "#eee",
- color: [
- "#83bff6",
- "#23b7e5",
- "#188df0",
- "#564aa3",
- "#a5e7f0",
- "#cbb0e3",
- ],
- borderColor: "#ccc",
- borderWidth: 0,
- visualMapColor: ["#83bff6", "#23b7e5", "#188df0", "#564aa3"],
- legendTextColor: "#999999",
- kColor: "#edafda",
- kColor0: "transparent",
- kBorderColor: "#d680bc",
- kBorderColor0: "#8fd3e8",
- kBorderWidth: "2",
- lineWidth: "2",
- symbolSize: "6",
- symbol: "emptyCircle",
- symbolBorderWidth: "2",
- lineSmooth: true,
- graphLineWidth: 1,
- graphLineColor: "#aaa",
- mapLabelColor: "#000000",
- mapLabelColorE: "rgb(81,107,145)",
- mapBorderColor: "#516b91",
- mapBorderColorE: "#516b91",
- mapBorderWidth: 0.5,
- mapBorderWidthE: 1,
- mapAreaColor: "#f3f3f3",
- mapAreaColorE: "rgba(165,231,240,1)",
- axes: [
- {
- type: "all",
- name: "通用坐标轴",
- axisLineShow: true,
- axisLineColor: "#cccccc",
- axisTickShow: true,
- axisTickColor: "#333",
- axisLabelShow: true,
- axisLabelColor: "#999999",
- splitLineShow: true,
- splitLineColor: ["#eeeeee"],
- splitAreaShow: false,
- splitAreaColor: [
- "rgba(80,36,204,0.05)",
- "rgba(223,35,35,0.02)",
- ],
- },
- {
- type: "category",
- name: "类目坐标轴",
- axisLineShow: true,
- axisLineColor: "#333",
- axisTickShow: true,
- axisTickColor: "#333",
- axisLabelShow: true,
- axisLabelColor: "#333",
- splitLineShow: false,
- splitLineColor: ["#ccc"],
- splitAreaShow: false,
- splitAreaColor: [
- "rgba(250,250,250,0.3)",
- "rgba(200,200,200,0.3)",
- ],
- },
- {
- type: "value",
- name: "数值坐标轴",
- axisLineShow: true,
- axisLineColor: "#333",
- axisTickShow: true,
- axisTickColor: "#333",
- axisLabelShow: true,
- axisLabelColor: "#333",
- splitLineShow: true,
- splitLineColor: ["#ccc"],
- splitAreaShow: false,
- splitAreaColor: [
- "rgba(250,250,250,0.3)",
- "rgba(200,200,200,0.3)",
- ],
- },
- {
- type: "log",
- name: "对数坐标轴",
- axisLineShow: true,
- axisLineColor: "#333",
- axisTickShow: true,
- axisTickColor: "#333",
- axisLabelShow: true,
- axisLabelColor: "#333",
- splitLineShow: true,
- splitLineColor: ["#ccc"],
- splitAreaShow: false,
- splitAreaColor: [
- "rgba(250,250,250,0.3)",
- "rgba(200,200,200,0.3)",
- ],
- },
- {
- type: "time",
- name: "时间坐标轴",
- axisLineShow: true,
- axisLineColor: "#333",
- axisTickShow: true,
- axisTickColor: "#333",
- axisLabelShow: true,
- axisLabelColor: "#333",
- splitLineShow: true,
- splitLineColor: ["#ccc"],
- splitAreaShow: false,
- splitAreaColor: [
- "rgba(250,250,250,0.3)",
- "rgba(200,200,200,0.3)",
- ],
- },
- ],
- axisSeperateSetting: true,
- toolboxColor: "#999999",
- toolboxEmpasisColor: "#666666",
- tooltipAxisColor: "#f9dbdb",
- tooltipAxisWidth: 1,
- timelineLineColor: "#8fd3e8",
- timelineLineWidth: 1,
- timelineItemColor: "#8fd3e8",
- timelineItemColorE: "#8fd3e8",
- timelineCheckColor: "#8fd3e8",
- timelineCheckBorderColor: "rgba(138,124,168,0.37)",
- timelineItemBorderWidth: 1,
- timelineControlColor: "#213dbc",
- timelineControlBorderColor: "#8fd3e8",
- timelineControlBorderWidth: 0.5,
- timelineLabelColor: "#8fd3e8",
- datazoomBackgroundColor: "rgba(0,0,0,0)",
- datazoomDataColor: "rgba(255,255,255,0.3)",
- datazoomFillColor: "rgba(167,183,204,0.4)",
- datazoomHandleColor: "#2472d9",
- datazoomHandleWidth: "100",
- datazoomLabelColor: "#333333",
- },
- };
- window.echarts.registerTheme(theme_avue.themeName, theme_avue.theme);
|