qianming 4 years ago
parent e8a86fe649
commit dd07f598c6

@ -48,7 +48,7 @@ export const widgetLineCompare = {
name: 'pointSize', name: 'pointSize',
required: false, required: false,
placeholder: '', placeholder: '',
value: 10, value: 5,
}, },
{ {
type: 'el-switch', type: 'el-switch',
@ -80,7 +80,7 @@ export const widgetLineCompare = {
name: 'lineWidth', name: 'lineWidth',
required: false, required: false,
placeholder: '', placeholder: '',
value: 4, value: 2,
}, },
], ],
}, },
@ -281,7 +281,7 @@ export const widgetLineCompare = {
name: 'scaleYTop', name: 'scaleYTop',
required: false, required: false,
placeholder: '', placeholder: '',
value: true, value: false,
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
@ -397,7 +397,7 @@ export const widgetLineCompare = {
name: 'scaleYBottom', name: 'scaleYBottom',
required: false, required: false,
placeholder: '', placeholder: '',
value: true, value: false,
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
@ -520,19 +520,31 @@ export const widgetLineCompare = {
name: '提示语设置', name: '提示语设置',
list: [ list: [
{ {
type: 'el-input-number', type: 'el-switch',
label: '字体大小', label: '显示',
name: 'tipsFontSize', name: 'tipShow',
required: false, required: false,
placeholder: '', placeholder: '',
value: 16 value: true,
}, },
{ {
type: 'vue-color', type: 'el-select',
label: '字体颜色', label: '类型',
name: 'lineColor', name: 'tipType',
required: false, required: false,
placeholder: '', placeholder: '',
selectOptions: [
{code: 'line', name: '线形'},
{code: 'cross', name: '十字形'},
],
value: 'line'
},
{
type: 'vue-color',
label: '颜色',
name: 'tipColor',
required: false,
placeholder: '#e68b55',
}, },
], ],
}, },

@ -56,7 +56,7 @@ export const widgetLineStack = {
name: 'pointSize', name: 'pointSize',
required: false, required: false,
placeholder: '', placeholder: '',
value: 10, value: 5,
}, },
{ {
type: 'el-switch', type: 'el-switch',

@ -33,18 +33,18 @@ export default {
axisPointer: { axisPointer: {
type: 'line', type: 'line',
lineStyle: { lineStyle: {
color: 'ffffff', color: '#ffffff',
type: 'dashed', type: 'dashed',
}, },
}, },
/*axisPointer: { /*axisPointer: {
type: 'cross', type: 'cross',
lineStyle: { lineStyle: {
color: 'ffffff', color: '#ffffff',
type: 'dashed', type: 'dashed',
}, },
crossStyle: { crossStyle: {
color: 'ffffff', color: '#ffffff',
} }
},*/ },*/
}, },
@ -182,6 +182,9 @@ export default {
type: 'line', type: 'line',
xAxisIndex: 0, xAxisIndex: 0,
yAxisIndex: 0, yAxisIndex: 0,
showSymbol: true,//
symbol: 'circle',
symbolSize: 5,
smooth: true, // 线线 smooth: true, // 线线
itemStyle: { itemStyle: {
color: '#36c5e7', color: '#36c5e7',
@ -190,7 +193,7 @@ export default {
color: '#36c5e7', color: '#36c5e7',
width: 2, width: 2,
}, },
label: { label: { //
position: 'top', position: 'top',
distance: 10, distance: 10,
show: true, show: true,
@ -204,6 +207,9 @@ export default {
type: 'line', type: 'line',
xAxisIndex: 1, xAxisIndex: 1,
yAxisIndex: 1, yAxisIndex: 1,
showSymbol: true,//
symbol: 'circle',
symbolSize: 5,
smooth: true, // 线线 smooth: true, // 线线
itemStyle: { itemStyle: {
color: '#e68b55', color: '#e68b55',
@ -212,7 +218,7 @@ export default {
color: '#e68b55', color: '#e68b55',
width: 2, width: 2,
}, },
label: { label: {//
position: 'bottom', position: 'bottom',
distance: 10, distance: 10,
show: true, show: true,
@ -267,11 +273,11 @@ export default {
this.setOptionsX(); this.setOptionsX();
this.setOptionsYTop(); this.setOptionsYTop();
this.setOptionsYBottom(); this.setOptionsYBottom();
// this.setOptionsTop(); this.setOptionsTop();
// this.setOptionsTooltip(); this.setOptionsTooltip();
this.setOptionsGrid(); this.setOptionsGrid();
// this.setOptionsLegend(); this.setOptionsLegend();
// this.setOptionsColor(); this.setOptionsColor();
this.setOptionsData(); this.setOptionsData();
}, },
// //
@ -427,57 +433,77 @@ export default {
} }
this.options.yAxis[1] = yAxis this.options.yAxis[1] = yAxis
}, },
// // 线
setOptionsTop() { setOptionsTop() {
const optionsSetup = this.optionsSetup; const optionsSetup = this.optionsSetup;
const series = this.options.series; const series = this.options.series
// 线
for (const key in series) { for (const key in series) {
if (series[key].type == "bar") { series[key].showSymbol = optionsSetup.markPoint
series[key].symbolSize = optionsSetup.pointSize
series[key].smooth = optionsSetup.smoothCurve
if (optionsSetup.area) {
series[key].areaStyle = {
opacity: optionsSetup.areaThickness / 100
}
} else {
series[key].areaStyle = {
opacity: 0
}
}
}
//
if (series[0].type == 'line') {
series[0].label = { series[0].label = {
normal: { position: 'top',
distance: 10,
show: optionsSetup.isShow, show: optionsSetup.isShow,
position: 'insideLeft',
textStyle: {
fontSize: optionsSetup.fontSize,
color: optionsSetup.subTextColor, color: optionsSetup.subTextColor,
fontSize: optionsSetup.fontSize,
fontWeight: optionsSetup.fontWeight fontWeight: optionsSetup.fontWeight
} }
},
emphasis: {
show: false,
},
},
series[1].label = { series[1].label = {
normal: { position: 'bottom',
distance: 10,
show: optionsSetup.isShow, show: optionsSetup.isShow,
color: 'red',
position: 'insideRight',
textStyle: {
fontSize: optionsSetup.fontSize,
color: optionsSetup.subTextColor, color: optionsSetup.subTextColor,
fontSize: optionsSetup.fontSize,
fontWeight: optionsSetup.fontWeight fontWeight: optionsSetup.fontWeight
} }
}
}, },
emphasis: { // tooltip
show: false, setOptionsTooltip() {
const optionsSetup = this.optionsSetup;
let tooltip = {}
if (optionsSetup.tipType == "line") {
tooltip = {
show: optionsSetup.tipShow,
trigger: 'axis',
axisPointer: {
type: optionsSetup.tipType,
lineStyle: {
color: optionsSetup.tipColor,
type: 'dashed',
}, },
}, },
series[key].barWidth = optionsSetup.maxWidth;
} }
} else {
tooltip = {
show: optionsSetup.tipShow,
trigger: 'axis',
axisPointer: {
type: optionsSetup.tipType,
lineStyle: {
color: optionsSetup.tipColor,
type: 'dashed',
},
crossStyle: {
color: optionsSetup.tipColor,
} }
this.options.series = series;
}, },
// tooltip
setOptionsTooltip() {
const optionsSetup = this.optionsSetup;
const tooltip = {
trigger: "item",
show: true,
textStyle: {
color: optionsSetup.lineColor,
fontSize: optionsSetup.fontSize
} }
}; }
this.options.tooltip = tooltip; this.options.tooltip = tooltip;
}, },
// //
@ -517,31 +543,27 @@ export default {
}; };
legend.itemWidth = optionsSetup.lengedWidth; legend.itemWidth = optionsSetup.lengedWidth;
}, },
// //
setOptionsColor() { setOptionsColor() {
const optionsSetup = this.optionsSetup; const optionsSetup = this.optionsSetup;
const customColor = optionsSetup.customColor; const customColor = optionsSetup.customColor;
const series = this.options.series
const arrColor = [];
for (let i = 0; i < customColor.length; i++) {
arrColor.push(customColor[i].color);
}
if (!customColor) return; if (!customColor) return;
const itemStyleLeft = { for (const key in series) {
normal: { const itemStyle = {
color: customColor[0].color, color: arrColor[key],
barBorderRadius: [optionsSetup.radius, 0, 0, optionsSetup.radius]
},
emphasis: {
show: false,
},
} }
const itemStyleRight = { const lineStyle = {
normal: { color: arrColor[key],
color: customColor[1].color, width: optionsSetup.lineWidth,
barBorderRadius: [0, optionsSetup.radius, optionsSetup.radius, 0] }
}, this.options.series[key].itemStyle = itemStyle
emphasis: { this.options.series[key].lineStyle = lineStyle
show: false,
},
} }
this.options.series[0].itemStyle = itemStyleLeft;
this.options.series[1].itemStyle = itemStyleRight;
}, },
// //
setOptionsData() { setOptionsData() {

@ -319,7 +319,6 @@ export default {
symbol: 'circle', symbol: 'circle',
showSymbol: optionsSetup.markPoint, showSymbol: optionsSetup.markPoint,
symbolSize: optionsSetup.pointSize, symbolSize: optionsSetup.pointSize,
symbolColor: arrColor[i],
smooth: optionsSetup.smoothCurve, smooth: optionsSetup.smoothCurve,
// 线 // 线
lineStyle: { lineStyle: {

@ -277,7 +277,6 @@ export default {
fontSize: optionsCollapse.fontSize fontSize: optionsCollapse.fontSize
}; };
legend.itemWidth = optionsCollapse.lengedWidth; legend.itemWidth = optionsCollapse.lengedWidth;
console.log(legend);
}, },
// //
setOptionsColor() { setOptionsColor() {

Loading…
Cancel
Save