|
|
|
@ -29,13 +29,24 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
show: true,
|
|
|
|
|
trigger: "axis",
|
|
|
|
|
trigger: 'axis',
|
|
|
|
|
axisPointer: {
|
|
|
|
|
type: "line",
|
|
|
|
|
type: 'line',
|
|
|
|
|
lineStyle: {
|
|
|
|
|
type: "dashed",
|
|
|
|
|
color: 'ffffff',
|
|
|
|
|
type: 'dashed',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
/*axisPointer: {
|
|
|
|
|
type: 'cross',
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: 'ffffff',
|
|
|
|
|
type: 'dashed',
|
|
|
|
|
},
|
|
|
|
|
crossStyle: {
|
|
|
|
|
color: 'ffffff',
|
|
|
|
|
}
|
|
|
|
|
},*/
|
|
|
|
|
},
|
|
|
|
|
//边距
|
|
|
|
|
grid: [
|
|
|
|
@ -65,6 +76,7 @@ export default {
|
|
|
|
|
xAxis: [
|
|
|
|
|
{//
|
|
|
|
|
gridIndex: 0,
|
|
|
|
|
show: true,
|
|
|
|
|
type: 'category',
|
|
|
|
|
boundaryGap: true, // 居中
|
|
|
|
|
axisLine: { //x轴线
|
|
|
|
@ -79,6 +91,7 @@ export default {
|
|
|
|
|
axisLabel: { // X轴数据
|
|
|
|
|
show: true,
|
|
|
|
|
textStyle: {
|
|
|
|
|
interval: 0,
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
fontSize: 14
|
|
|
|
|
}
|
|
|
|
@ -87,6 +100,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
{//
|
|
|
|
|
gridIndex: 1,
|
|
|
|
|
show: true,
|
|
|
|
|
type: 'category',
|
|
|
|
|
position: 'top',
|
|
|
|
|
boundaryGap: true, // 居中
|
|
|
|
@ -101,6 +115,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
show: false,
|
|
|
|
|
interval: 0,
|
|
|
|
|
},
|
|
|
|
|
data: [],
|
|
|
|
|
},
|
|
|
|
@ -129,6 +144,9 @@ export default {
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
axisPointer: {
|
|
|
|
|
snap: true
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
gridIndex: 1,
|
|
|
|
@ -153,6 +171,9 @@ export default {
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
axisPointer: {
|
|
|
|
|
snap: true
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
series: [
|
|
|
|
@ -242,18 +263,18 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
// 修改图标options属性
|
|
|
|
|
editorOptions() {
|
|
|
|
|
/*this.setOptionsTitle();
|
|
|
|
|
this.setOptionsXLeft();
|
|
|
|
|
this.setOptionsXRight();
|
|
|
|
|
this.setOptionsY();
|
|
|
|
|
this.setOptionsTop();
|
|
|
|
|
this.setOptionsTooltip();
|
|
|
|
|
this.setOptionsGrid();
|
|
|
|
|
this.setOptionsLegend();
|
|
|
|
|
this.setOptionsColor();*/
|
|
|
|
|
this.setOptionsTitle();
|
|
|
|
|
this.setOptionsX();
|
|
|
|
|
// this.setOptionsXRight();
|
|
|
|
|
// this.setOptionsY();
|
|
|
|
|
// this.setOptionsTop();
|
|
|
|
|
// this.setOptionsTooltip();
|
|
|
|
|
// this.setOptionsGrid();
|
|
|
|
|
// this.setOptionsLegend();
|
|
|
|
|
// this.setOptionsColor();
|
|
|
|
|
this.setOptionsData();
|
|
|
|
|
},
|
|
|
|
|
/* // 标题修改
|
|
|
|
|
// 标题修改
|
|
|
|
|
setOptionsTitle() {
|
|
|
|
|
const optionsCollapse = this.optionsSetup;
|
|
|
|
|
const title = {};
|
|
|
|
@ -267,40 +288,54 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
this.options.title = title;
|
|
|
|
|
},
|
|
|
|
|
// 左X轴设置
|
|
|
|
|
setOptionsXLeft() {
|
|
|
|
|
// X轴设置
|
|
|
|
|
setOptionsX() {
|
|
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
|
|
const xAxisLeft = {
|
|
|
|
|
splitNumber: optionsSetup.splitNumberLeft,
|
|
|
|
|
type: 'value',
|
|
|
|
|
inverse: true,
|
|
|
|
|
axisLine: {//X轴线
|
|
|
|
|
show: optionsSetup.xLineLeft,
|
|
|
|
|
const xAxis0 = {
|
|
|
|
|
gridIndex: 0,
|
|
|
|
|
show: optionsSetup.isShowX,
|
|
|
|
|
type: 'category',
|
|
|
|
|
boundaryGap: optionsSetup.boundaryX, // 值居中
|
|
|
|
|
axisLine: { //x轴线
|
|
|
|
|
show: optionsSetup.lineX,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: optionsSetup.lineColorXLeft,
|
|
|
|
|
},
|
|
|
|
|
color: optionsSetup.lineColorX,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: optionsSetup.tickLineLeft,
|
|
|
|
|
axisTick: { // 刻度
|
|
|
|
|
show: optionsSetup.tickLineX,
|
|
|
|
|
},
|
|
|
|
|
position: 'bottom',
|
|
|
|
|
axisLabel: { // x轴
|
|
|
|
|
show: optionsSetup.hideXLeft,
|
|
|
|
|
axisLabel: { // X轴数据
|
|
|
|
|
show: true,
|
|
|
|
|
interval: optionsSetup.splitNumberX,
|
|
|
|
|
textStyle: {
|
|
|
|
|
color: optionsSetup.XcolorLeft,
|
|
|
|
|
fontSize: optionsSetup.fontSizeXLeft
|
|
|
|
|
color: optionsSetup.colorX,
|
|
|
|
|
fontSize: optionsSetup.fontSizeX
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
splitLine: { // 分割线
|
|
|
|
|
show: optionsSetup.SplitLineLeft,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: optionsSetup.SplitLineColorLeft,
|
|
|
|
|
width: optionsSetup.SplitLinefontSizeLeft,
|
|
|
|
|
type: 'solid'
|
|
|
|
|
}
|
|
|
|
|
const xAxis1 = {
|
|
|
|
|
gridIndex: 1,
|
|
|
|
|
show: optionsSetup.isShowX,
|
|
|
|
|
type: 'category',
|
|
|
|
|
position: 'top',
|
|
|
|
|
boundaryGap: optionsSetup.boundaryX, // 值居中
|
|
|
|
|
axisLine: { // x轴线
|
|
|
|
|
show: optionsSetup.lineX,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: optionsSetup.lineColorX,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
axisTick: { // 刻度
|
|
|
|
|
show: optionsSetup.tickLineX,
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
show: false,
|
|
|
|
|
interval: optionsSetup.splitNumberX,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
this.options.xAxis[0] = xAxisLeft;
|
|
|
|
|
this.options.xAxis[0] = xAxis0;
|
|
|
|
|
this.options.xAxis[1] = xAxis1;
|
|
|
|
|
},
|
|
|
|
|
// 右X轴设置
|
|
|
|
|
setOptionsXRight() {
|
|
|
|
@ -415,12 +450,12 @@ export default {
|
|
|
|
|
this.options.tooltip = tooltip;
|
|
|
|
|
},
|
|
|
|
|
// 边距设置
|
|
|
|
|
getOptionsBottom(){
|
|
|
|
|
getOptionsBottom() {
|
|
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
|
|
let bottom = optionsSetup.marginBottom;
|
|
|
|
|
if (optionsSetup.hideXLeft) {
|
|
|
|
|
bottom = optionsSetup.marginBottom + 15
|
|
|
|
|
}else if (optionsSetup.hideXRight){
|
|
|
|
|
} else if (optionsSetup.hideXRight) {
|
|
|
|
|
bottom = optionsSetup.marginBottom + 15
|
|
|
|
|
}
|
|
|
|
|
return bottom
|
|
|
|
@ -495,7 +530,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.options.series[0].itemStyle = itemStyleLeft;
|
|
|
|
|
this.options.series[1].itemStyle = itemStyleRight;
|
|
|
|
|
},*/
|
|
|
|
|
},
|
|
|
|
|
// 数据解析
|
|
|
|
|
setOptionsData() {
|
|
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
|
@ -544,7 +579,6 @@ export default {
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
console.log(arrayList)
|
|
|
|
|
this.options.series[0]['name'] = arrayList[0].name
|
|
|
|
|
this.options.series[0]['data'] = arrayList[0].data
|
|
|
|
|
this.options.series[1]['name'] = arrayList[1].name
|
|
|
|
|