|
@@ -155,8 +155,15 @@ export default {
|
|
|
this.chartInfo.LeftMax = '';
|
|
|
this.chartInfo.LeftMin = '';
|
|
|
this.chartInfo.MarkersLines = "";
|
|
|
+ this.$refs.markerSectionRef&&this.$refs.markerSectionRef.initData(this.chartInfo||{});
|
|
|
this.chartInfo.MarkersAreas = "";
|
|
|
}
|
|
|
+ //从普通图切换到柱形图,截面散点,雷达图 清空MarkersLines
|
|
|
+ if(![7,10,11].includes(oldval)&&[7,10,11].includes(newval)){
|
|
|
+ this.chartInfo.MarkersLines = ""
|
|
|
+ this.$refs.markerSectionRef&&this.$refs.markerSectionRef.initData(this.chartInfo||{});
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
this.initStatus();
|
|
|
|