|
@@ -51,7 +51,7 @@
|
|
|
// return wellId.value + "-" + dataType.value;
|
|
|
//});
|
|
|
const lineColor = computed(()=>{
|
|
|
- return props.lineColor? props.lineColor : '#5470c6';
|
|
|
+ return props.lineColor? props.lineColor : '#0058D0';
|
|
|
});
|
|
|
|
|
|
return{
|
|
@@ -101,7 +101,8 @@
|
|
|
},
|
|
|
getSeries:async function (showSymbol){
|
|
|
let dataArys = await this.getDatas();
|
|
|
- let series = [{type: this.serieType, data:[] as any, showSymbol:showSymbol, itemStyle : {color:this.lineColor}}];
|
|
|
+ let series = [{type: this.serieType, data:[] as any, showSymbol:showSymbol,
|
|
|
+ itemStyle : {color:this.lineColor}, lineStyle : {width:1}}];
|
|
|
//数据组装,这里根据业务组装y轴数据
|
|
|
(dataArys! as any).forEach(row=>{ series[0].data.push(row[this.dataType]) });
|
|
|
console.log("getSeries", series);
|