|
@@ -4,12 +4,12 @@
|
|
|
|
|
|
<script>
|
|
|
import util from "@tools/util";
|
|
|
-import partten from "@tools/partten";
|
|
|
+import partten from "@/helper/partten";
|
|
|
import * as echarts from "echarts";
|
|
|
-import chartTheme from './current-scatter-chart.json'
|
|
|
+import chartTheme from "./current-scatter-chart.json";
|
|
|
|
|
|
export default {
|
|
|
- name: 'currentScatterChart',
|
|
|
+ name: "currentScatterChart",
|
|
|
props: {
|
|
|
// 图表宽度
|
|
|
width: {
|
|
@@ -42,7 +42,7 @@ export default {
|
|
|
},
|
|
|
dataSet: {
|
|
|
type: String,
|
|
|
- default: ''
|
|
|
+ default: "",
|
|
|
},
|
|
|
// 图表核心数据
|
|
|
seriesData: {
|
|
@@ -75,35 +75,38 @@ export default {
|
|
|
"#c531c7",
|
|
|
"#bd3338",
|
|
|
],
|
|
|
- theme: 'light'
|
|
|
+ theme: "dark",
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- collapse(){
|
|
|
- return this.$store.state.collapse
|
|
|
- }
|
|
|
+ collapse() {
|
|
|
+ return this.$store.state.collapse;
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
- height(){
|
|
|
- if(this.chart){
|
|
|
- this.chart.resize()
|
|
|
+ height() {
|
|
|
+ if (this.chart) {
|
|
|
+ this.chart.resize();
|
|
|
}
|
|
|
},
|
|
|
- collapse(val){
|
|
|
- if(this.chart){
|
|
|
+ collapse(val) {
|
|
|
+ if (this.chart) {
|
|
|
setTimeout(() => {
|
|
|
- this.chart.resize()
|
|
|
- },300)
|
|
|
+ this.chart.resize();
|
|
|
+ }, 300);
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
methods: {
|
|
|
resize() {},
|
|
|
initChart() {
|
|
|
const that = this;
|
|
|
- echarts.registerTheme('chartTheme', chartTheme)
|
|
|
- let myChart = echarts.init(document.getElementById(this.id), 'chartTheme');
|
|
|
- that.chart = myChart
|
|
|
+ echarts.registerTheme("chartTheme", chartTheme);
|
|
|
+ let myChart = echarts.init(
|
|
|
+ document.getElementById(this.id),
|
|
|
+ "chartTheme"
|
|
|
+ );
|
|
|
+ that.chart = myChart;
|
|
|
//指定图表的配置项和数据
|
|
|
const option = {
|
|
|
//标题
|
|
@@ -122,14 +125,14 @@ export default {
|
|
|
// : "rgba(255,255,255,0.5)",
|
|
|
//工具箱
|
|
|
color: [
|
|
|
- "rgb(255,0,0)",
|
|
|
- "#FF8700",
|
|
|
- "#e6b600d9",
|
|
|
- "#0098d9",
|
|
|
- "#3D54BE",
|
|
|
- "#005eaa",
|
|
|
- "#cda819",
|
|
|
- "#32a487"
|
|
|
+ "rgb(255,0,0)",
|
|
|
+ "#FF8700",
|
|
|
+ "#e6b600d9",
|
|
|
+ "#0098d9",
|
|
|
+ "#3D54BE",
|
|
|
+ "#005eaa",
|
|
|
+ "#cda819",
|
|
|
+ "#32a487",
|
|
|
],
|
|
|
toolbox: {
|
|
|
show: false,
|
|
@@ -139,14 +142,14 @@ export default {
|
|
|
borderColor: partten.getColor("gray"),
|
|
|
textStyle: {
|
|
|
fontSize: util.vh(16),
|
|
|
- color: partten.getColor("gray")
|
|
|
+ color: partten.getColor("gray"),
|
|
|
},
|
|
|
iconStyle: {
|
|
|
- borderColor:partten.getColor("gray")
|
|
|
+ borderColor: partten.getColor("gray"),
|
|
|
},
|
|
|
emphasis: {
|
|
|
iconStyle: {
|
|
|
- borderColor:partten.getColor("gray")
|
|
|
+ borderColor: partten.getColor("gray"),
|
|
|
},
|
|
|
},
|
|
|
},
|
|
@@ -168,7 +171,7 @@ export default {
|
|
|
// },
|
|
|
},
|
|
|
brush: {
|
|
|
- seriesIndex: [2,3],
|
|
|
+ seriesIndex: [2, 3],
|
|
|
yAxisIndex: 0,
|
|
|
transformable: true,
|
|
|
throttleType: "debounce",
|
|
@@ -205,23 +208,22 @@ export default {
|
|
|
legend: {
|
|
|
show: that.showLegend,
|
|
|
// data: [ "拟合功率", "保证功率","无用点", "有用点", "Cp值"],
|
|
|
- right: 260,
|
|
|
- type: 'scroll',
|
|
|
- top: "5",
|
|
|
+ right: 350,
|
|
|
+ type: "scroll",
|
|
|
+ top: 2,
|
|
|
// icon: "circle",
|
|
|
itemWidth: 6,
|
|
|
inactiveColor:
|
|
|
- that.theme === "dark"
|
|
|
- ? partten.getColor("gray")
|
|
|
- : "#000",
|
|
|
+ that.theme === "dark" ? partten.getColor("gray") : "#000",
|
|
|
textStyle: {
|
|
|
- color:
|
|
|
- that.theme === "dark"
|
|
|
- ? partten.getColor("grayl")
|
|
|
- : "#000",
|
|
|
+ color: that.theme === "dark" ? partten.getColor("grayl") : "#000",
|
|
|
fontSize: 12,
|
|
|
},
|
|
|
-
|
|
|
+ pageTextStyle: {
|
|
|
+ color: '#a6b0b2',
|
|
|
+ },
|
|
|
+ pageIconInactiveColor: "#aaa",
|
|
|
+ pageIconColor: "#05bb4c",
|
|
|
},
|
|
|
grid: {
|
|
|
top: 58,
|
|
@@ -232,9 +234,9 @@ export default {
|
|
|
//x轴
|
|
|
xAxis: [
|
|
|
{
|
|
|
- name: 'm/s',
|
|
|
+ name: "m/s",
|
|
|
nameTextStyle: {
|
|
|
- color: '#838383'
|
|
|
+ color: "#838383",
|
|
|
},
|
|
|
type: "value",
|
|
|
boundaryGap: false,
|
|
@@ -250,25 +252,24 @@ export default {
|
|
|
},
|
|
|
smooth: true,
|
|
|
textStyle: {
|
|
|
- color:
|
|
|
- that.theme === "dark"
|
|
|
- ? partten.getColor("gray")
|
|
|
- : "#000",
|
|
|
+ color: that.theme === "dark" ? partten.getColor("gray") : "#000",
|
|
|
},
|
|
|
},
|
|
|
],
|
|
|
//y轴没有显式设置,根据值自动生成y轴
|
|
|
- yAxis: [{
|
|
|
- splitLine: { show: false },
|
|
|
- position: 'left',
|
|
|
- min: 0,
|
|
|
- name: 'kW',
|
|
|
- nameTextStyle: {
|
|
|
- color: '#838383'
|
|
|
- }
|
|
|
- }],
|
|
|
+ yAxis: [
|
|
|
+ {
|
|
|
+ splitLine: { show: false },
|
|
|
+ position: "left",
|
|
|
+ min: 0,
|
|
|
+ name: "kW",
|
|
|
+ nameTextStyle: {
|
|
|
+ color: "#838383",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ],
|
|
|
animation: true,
|
|
|
- dataset: that.dataSet.length? JSON.parse(that.dataSet) : [],
|
|
|
+ dataset: that.dataSet.length ? JSON.parse(that.dataSet) : [],
|
|
|
//数据-data是最终要显示的数据
|
|
|
series: that.seriesData,
|
|
|
};
|
|
@@ -306,21 +307,21 @@ export default {
|
|
|
myChart.on("brushSelected", (params) => {
|
|
|
that.$emit("getSelected", params.batch || []);
|
|
|
});
|
|
|
- myChart.off('click')
|
|
|
- myChart.on('click', params => {
|
|
|
- // if(params.componentType === 'markArea'){
|
|
|
- // myChart.dispatchAction({
|
|
|
- // type: 'brush',
|
|
|
- // areas: [
|
|
|
- // {
|
|
|
- // xAxisIndex: 0,
|
|
|
- // brushType: 'lineX',
|
|
|
- // coordRange: [params.data.coord[0][0], params.data.coord[1][0]]
|
|
|
- // },
|
|
|
- // ]
|
|
|
- // });
|
|
|
- // }
|
|
|
- })
|
|
|
+ myChart.off("click");
|
|
|
+ myChart.on("click", (params) => {
|
|
|
+ // if(params.componentType === 'markArea'){
|
|
|
+ // myChart.dispatchAction({
|
|
|
+ // type: 'brush',
|
|
|
+ // areas: [
|
|
|
+ // {
|
|
|
+ // xAxisIndex: 0,
|
|
|
+ // brushType: 'lineX',
|
|
|
+ // coordRange: [params.data.coord[0][0], params.data.coord[1][0]]
|
|
|
+ // },
|
|
|
+ // ]
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
created() {
|
|
@@ -328,9 +329,9 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
// this.$nextTick(() => {
|
|
|
- this.$el.style.width = this.width;
|
|
|
- this.$el.style.height = this.height;
|
|
|
- this.initChart();
|
|
|
+ this.$el.style.width = this.width;
|
|
|
+ this.$el.style.height = this.height;
|
|
|
+ this.initChart();
|
|
|
// });
|
|
|
},
|
|
|
updated() {
|