|
|
<template>
|
|
|
<div :style="styleObj">
|
|
|
<v-chart :options="options" autoresize/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
export default {
|
|
|
name: "customLineChart",
|
|
|
components: {},
|
|
|
props: {
|
|
|
value: Object,
|
|
|
ispreview: Boolean
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
options: {
|
|
|
grid: {},
|
|
|
color: [],
|
|
|
title: {
|
|
|
text: "",
|
|
|
textStyle: {
|
|
|
color: "#fff"
|
|
|
}
|
|
|
},
|
|
|
tooltip: {
|
|
|
trigger: "item",
|
|
|
formatter: "{a} <br/>{b} : {c}%"
|
|
|
},
|
|
|
legend: {
|
|
|
textStyle: {
|
|
|
color: "#fff"
|
|
|
}
|
|
|
},
|
|
|
xAxis: {
|
|
|
type: "category",
|
|
|
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
|
|
|
axisLabel: {
|
|
|
show: true,
|
|
|
textStyle: {
|
|
|
color: "#fff"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
yAxis: {
|
|
|
type: "value",
|
|
|
axisLabel: {
|
|
|
show: true,
|
|
|
textStyle: {
|
|
|
color: "#fff"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
series: [
|
|
|
{
|
|
|
data: [],
|
|
|
type: "line"
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
optionsStyle: {}, // 样式
|
|
|
optionsData: {}, // 数据
|
|
|
optionsCollapse: {}, // 图标属性
|
|
|
optionsSetup: {}
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
styleObj() {
|
|
|
return {
|
|
|
position: this.ispreview ? "absolute" : "static",
|
|
|
width: this.optionsStyle.width + "px",
|
|
|
height: this.optionsStyle.height + "px",
|
|
|
left: this.optionsStyle.left + "px",
|
|
|
top: this.optionsStyle.top + "px",
|
|
|
background: this.optionsSetup.background
|
|
|
};
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
value: {
|
|
|
handler(val) {
|
|
|
this.optionsStyle = val.position;
|
|
|
this.optionsData = val.data;
|
|
|
this.optionsCollapse = val.collapse;
|
|
|
this.optionsSetup = val.setup;
|
|
|
this.editorOptions();
|
|
|
},
|
|
|
deep: true
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
this.optionsStyle = this.value.position;
|
|
|
this.optionsData = this.value.data;
|
|
|
this.optionsCollapse = this.value.collapse;
|
|
|
this.optionsSetup = this.value.setup;
|
|
|
this.editorOptions();
|
|
|
},
|
|
|
methods: {
|
|
|
// 修改图标options属性
|
|
|
editorOptions() {
|
|
|
this.setOptionsTitle();
|
|
|
this.setOptionsX();
|
|
|
this.setOptionsY();
|
|
|
this.setOptionsTop();
|
|
|
this.setOptionsTooltip();
|
|
|
this.setOptionsData();
|
|
|
this.setOptionsMargin();
|
|
|
this.setOptionsLegend();
|
|
|
this.setOptionsColor();
|
|
|
},
|
|
|
// 标题修改
|
|
|
setOptionsTitle() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const title = {};
|
|
|
title.text = optionsSetup.titleText;
|
|
|
title.show = optionsSetup.isNoTitle;
|
|
|
title.left = optionsSetup.textAlign;
|
|
|
title.textStyle = {
|
|
|
color: optionsSetup.textColor,
|
|
|
fontSize: optionsSetup.textFontSize,
|
|
|
fontWeight: optionsSetup.textFontWeight
|
|
|
};
|
|
|
title.subtext = optionsSetup.subText;
|
|
|
title.subtextStyle = {
|
|
|
color: optionsSetup.subTextColor,
|
|
|
fontWeight: optionsSetup.subTextFontWeight,
|
|
|
fontSize: optionsSetup.subTextFontSize
|
|
|
};
|
|
|
title.top='8px';
|
|
|
title.left='8px';
|
|
|
this.options.title = title;
|
|
|
},
|
|
|
// X轴设置
|
|
|
setOptionsX() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const xAxis = {
|
|
|
type: "category",
|
|
|
show: optionsSetup.hideX, // 坐标轴是否显示
|
|
|
name: optionsSetup.xName, // 坐标轴名称
|
|
|
nameTextStyle: {
|
|
|
color: optionsSetup.nameColorX,
|
|
|
fontSize: optionsSetup.nameFontSizeX
|
|
|
},
|
|
|
nameRotate: optionsSetup.textAngle, // 文字角度
|
|
|
inverse: optionsSetup.reversalX, // 轴反转
|
|
|
axisLabel: {
|
|
|
show: true,
|
|
|
interval: optionsSetup.textInterval, // 文字间隔
|
|
|
rotate: optionsSetup.textAngle, // 文字角度
|
|
|
textStyle: {
|
|
|
color: optionsSetup.Xcolor, // x轴 坐标文字颜色
|
|
|
fontSize: optionsSetup.fontSizeX
|
|
|
}
|
|
|
},
|
|
|
axisLine: {
|
|
|
show: true,
|
|
|
lineStyle: {
|
|
|
color: optionsSetup.lineColorX
|
|
|
}
|
|
|
},
|
|
|
splitLine: {
|
|
|
show: optionsSetup.isShowSplitLineX,
|
|
|
lineStyle: {
|
|
|
color: optionsSetup.splitLineColorX
|
|
|
}
|
|
|
},
|
|
|
scale: true,
|
|
|
boundaryGap: ['10%', '10%'],
|
|
|
splitArea: {
|
|
|
show: optionsSetup.splitArea,
|
|
|
areaStyle: {
|
|
|
color: [optionsSetup.splitAreaColor, 'transparent'
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
this.options.xAxis = xAxis;
|
|
|
},
|
|
|
// Y轴设置
|
|
|
setOptionsY() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const yAxis = {
|
|
|
type: "value",
|
|
|
scale: optionsSetup.scale,
|
|
|
splitNumber: optionsSetup.splitNumber,// 均分
|
|
|
show: optionsSetup.isShowY, // 坐标轴是否显示
|
|
|
name: optionsSetup.textNameY, // 坐标轴名称
|
|
|
nameTextStyle: { // 别名
|
|
|
color: optionsSetup.nameColorY,
|
|
|
fontSize: optionsSetup.namefontSizeY
|
|
|
},
|
|
|
inverse: optionsSetup.reversalY, // 轴反转
|
|
|
axisLabel: {
|
|
|
show: true,
|
|
|
rotate: optionsSetup.ytextAngle, // 文字角度
|
|
|
textStyle: {
|
|
|
color: optionsSetup.colorY, // y轴 坐标文字颜色
|
|
|
fontSize: optionsSetup.fontSizeY
|
|
|
}
|
|
|
},
|
|
|
axisLine: {
|
|
|
show: false,//是否显示坐标线
|
|
|
lineStyle: {
|
|
|
color: optionsSetup.lineColorY
|
|
|
}
|
|
|
},
|
|
|
axisTick: {
|
|
|
show: false //是否显示坐标刻度
|
|
|
},
|
|
|
splitLine: {
|
|
|
show: optionsSetup.isShowSplitLineY,
|
|
|
lineStyle: {
|
|
|
color: optionsSetup.splitLineColorY
|
|
|
}
|
|
|
},
|
|
|
};
|
|
|
this.options.yAxis = yAxis;
|
|
|
},
|
|
|
// 折线设置
|
|
|
setOptionsTop() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const series = this.options.series;
|
|
|
for (const key in series) {
|
|
|
if (series[key].type == "line") {
|
|
|
series[key].showSymbol = optionsSetup.markPoint;
|
|
|
series[key].symbolSize = optionsSetup.pointSize;
|
|
|
series[key].smooth = optionsSetup.smoothCurve;
|
|
|
/* series[key].itemStyle = {
|
|
|
normal : {
|
|
|
color:optionsSetup.itemStyleColor,
|
|
|
lineStyle:{
|
|
|
color:optionsSetup.itemStyleColor
|
|
|
}
|
|
|
}
|
|
|
}*/
|
|
|
if (optionsSetup.area) {
|
|
|
series[key].areaStyle = {
|
|
|
opacity: optionsSetup.areaThickness / 100
|
|
|
};
|
|
|
} else {
|
|
|
series[key].areaStyle = {
|
|
|
opacity: 0
|
|
|
};
|
|
|
}
|
|
|
|
|
|
series[key].lineStyle = {
|
|
|
width: optionsSetup.lineWidth,
|
|
|
};
|
|
|
series[key].label = {
|
|
|
show: optionsSetup.isShow,
|
|
|
position: "top",
|
|
|
distance: 10,
|
|
|
fontSize: optionsSetup.fontSize,
|
|
|
color: optionsSetup.subTextColor,
|
|
|
fontWeight: optionsSetup.fontWeight
|
|
|
};
|
|
|
}
|
|
|
}
|
|
|
this.options.series = series;
|
|
|
},
|
|
|
// tooltip 设置
|
|
|
setOptionsTooltip() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const tooltip = {
|
|
|
trigger: "axis",
|
|
|
show: true,
|
|
|
textStyle: {
|
|
|
color: optionsSetup.lineColor,
|
|
|
fontSize: optionsSetup.fontSize
|
|
|
},
|
|
|
formatter:function (param) {
|
|
|
console.log("param",param,param.length)
|
|
|
let kpiName=optionsSetup.titleText;
|
|
|
let kpiUnit='';
|
|
|
// 鼠标悬浮线上提示
|
|
|
// 顶部提示
|
|
|
let tips = '<table>';
|
|
|
if (param.length == 1) {
|
|
|
tips += "<tr><td style='text-align:left;' colspan='4'>" + param[0].name + "</td></tr>";
|
|
|
} else {
|
|
|
tips += "<tr><td style='text-align:left;' colspan='4'>" + kpiName + " " + param[0].name + "</td></tr>";
|
|
|
}
|
|
|
// 每一条提示
|
|
|
$.each(param, function (i, v) {
|
|
|
tips += "<tr><td>" + v.marker + "</td>";
|
|
|
tips += '<td>';
|
|
|
if (param.length == 1) {
|
|
|
tips += (kpiName + ' ');
|
|
|
}
|
|
|
// tips += (v.seriesName && v.seriesName != '1' && !/series[0-9]+/.test(v.seriesName)) ? v.seriesName : '';
|
|
|
tips += '</td>'
|
|
|
tips += "<td>: </td><td>" + v.value;
|
|
|
tips += (kpiUnit == '%' ? kpiUnit : (' ' + kpiUnit)) + "</td></tr>";
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
tips += '</table>'
|
|
|
return tips;
|
|
|
}
|
|
|
};
|
|
|
this.options.tooltip = tooltip;
|
|
|
},
|
|
|
// 边距设置
|
|
|
setOptionsMargin() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const grid = {
|
|
|
left: optionsSetup.marginLeft,
|
|
|
right: optionsSetup.marginRight,
|
|
|
bottom: optionsSetup.marginBottom,
|
|
|
top: optionsSetup.marginTop,
|
|
|
containLabel: true
|
|
|
};
|
|
|
this.options.grid = grid;
|
|
|
},
|
|
|
// 图例操作 legend
|
|
|
setOptionsLegend() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const legend = this.options.legend;
|
|
|
legend.show = optionsSetup.isShowLegend;
|
|
|
legend.left = optionsSetup.lateralPosition == "left" ? 0 : "auto";
|
|
|
legend.right = optionsSetup.lateralPosition == "right" ? 0 : "auto";
|
|
|
legend.top = optionsSetup.longitudinalPosition == "top" ? 0 : "auto";
|
|
|
legend.bottom =
|
|
|
optionsSetup.longitudinalPosition == "bottom" ? 0 : "auto";
|
|
|
legend.orient = optionsSetup.layoutFront;
|
|
|
legend.textStyle = {
|
|
|
color: optionsSetup.lengedColor,
|
|
|
fontSize: optionsSetup.fontSize
|
|
|
};
|
|
|
legend.itemWidth = optionsSetup.lengedWidth;
|
|
|
},
|
|
|
// 图例颜色修改
|
|
|
setOptionsColor() {
|
|
|
const optionsSetup = this.optionsSetup;
|
|
|
const customColor = optionsSetup.customColor;
|
|
|
if (!customColor) return;
|
|
|
const arrColor = [];
|
|
|
for (let i = 0; i < customColor.length; i++) {
|
|
|
arrColor.push(customColor[i].color);
|
|
|
}
|
|
|
this.options.color = arrColor;
|
|
|
this.options = Object.assign({}, this.options);
|
|
|
},
|
|
|
// 处理数据
|
|
|
setOptionsData() {
|
|
|
const optionsData = this.optionsData; // 数据类型 静态 or 动态
|
|
|
optionsData.dataType == "staticData"
|
|
|
? this.staticDataFn(optionsData.staticData)
|
|
|
: this.dynamicDataFn(optionsData.dynamicData, optionsData.refreshTime);
|
|
|
},
|
|
|
staticDataFn(val) {
|
|
|
const series = this.options.series;
|
|
|
let axis = [];
|
|
|
let data = [];
|
|
|
for (const i in val) {
|
|
|
axis[i] = val[i].axis;
|
|
|
data[i] = val[i].data
|
|
|
}
|
|
|
console.log("abc",axis,data)
|
|
|
// x轴
|
|
|
this.options.xAxis.data = axis;
|
|
|
// series
|
|
|
for (const i in series) {
|
|
|
if (series[i].type == "line") {
|
|
|
series[i].data = data;
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
dynamicDataFn(val, refreshTime) {
|
|
|
if (!val) return;
|
|
|
if (this.ispreview) {
|
|
|
this.getEchartData(val);
|
|
|
this.flagInter = setInterval(() => {
|
|
|
this.getEchartData(val);
|
|
|
}, refreshTime);
|
|
|
} else {
|
|
|
this.getEchartData(val);
|
|
|
}
|
|
|
},
|
|
|
getEchartData(val) {
|
|
|
const data = this.queryEchartsData(val);
|
|
|
data.then(res => {
|
|
|
this.renderingFn(res);
|
|
|
});
|
|
|
},
|
|
|
renderingFn(val) {
|
|
|
// x轴
|
|
|
this.options.xAxis.data = val.xAxis;
|
|
|
// series
|
|
|
const series = this.options.series;
|
|
|
for (const i in series) {
|
|
|
if (series[i].type == "line") {
|
|
|
series[i].data = val.series[i].datas;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
.echarts {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
</style> |
...
|
...
|
|