diff --git a/src/views/statistics/detail.vue b/src/views/statistics/detail.vue
index eb5a28e..351573f 100644
--- a/src/views/statistics/detail.vue
+++ b/src/views/statistics/detail.vue
@@ -99,6 +99,7 @@
:columns="columnsEnergy_G"
:list="dataSourceEnergy_G"
:pagination="false"
+ :canSelect="false"
>
@@ -109,6 +110,7 @@
:columns="columnsEnergy_B"
:list="dataSourceEnergy_B"
:pagination="false"
+ :canSelect="false"
>
@@ -121,6 +123,7 @@
:columns="columnsResulution_G"
:list="dataSourceResulution_G"
:pagination="false"
+ :canSelect="false"
>
@@ -131,6 +134,7 @@
:columns="columnsResulution_B"
:list="dataSourceResulution_B"
:pagination="false"
+ :canSelect="false"
>
@@ -143,6 +147,7 @@
:columns="columnsEfficiency_G"
:list="dataSourceEfficiency_G"
:pagination="false"
+ :canSelect="false"
>
@@ -153,6 +158,7 @@
:columns="columnsEfficiency_BG"
:list="dataSourceEfficiency_BG"
:pagination="false"
+ :canSelect="false"
>
@@ -165,6 +171,7 @@
:columns="columnsRoiLimits"
:list="dataSourceRoiLimits"
:pagination="false"
+ :canSelect="false"
>
@@ -176,6 +183,7 @@
:columns="columnsRatios"
:list="dataSourceRatios"
:pagination="false"
+ :canSelect="false"
>
@@ -211,10 +219,10 @@
HISTOGRAM
- Number of B Channels:{{ allData.bspectrumBlock.numberBChannels }}
- B Energy Span:{{ allData.bspectrumBlock.energySpan }}
- Number of G Channels:{{ allData.bspectrumBlock.energySpan }}
- G Energy Span:{{ allData.bspectrumBlock.energySpan }}
+ Number of B Channels:{{ allData.histogramBlock.bchannels }}
+ B Energy Span:{{ allData.histogramBlock.benergySpan }}
+ Number of G Channels:{{ allData.histogramBlock.gchannels }}
+ G Energy Span:{{ allData.histogramBlock.genergySpan }}
@@ -232,6 +240,7 @@
:columns="columnsCertificate"
:list="dataSourceCertificate"
:pagination="false"
+ :canSelect="false"
>
@@ -508,7 +517,6 @@ export default {
level_5:[],
level_6:[]
},
- // dataSourceHistogray: [],
}
},
mounted () {
@@ -614,19 +622,18 @@ export default {
}
},
xAxis: {
+ // type:"value",
+ scale: false,
splitLine: {
show: true,
lineStyle: {
color: "rgbA(64, 105, 121, 0.2)"
},
},
- axisTick: {
- show: false,
- alignWithLabel: true,
- interval: 5
- },
- boundaryGap: false,
- data: str==="G"?this.dataSourceSpectrumX_G:this.dataSourceSpectrumX_B
+ boundaryGap:false,
+ interval: 25,
+ max:str==="G"?this.allData.gspectrumBlock.numberGChannels:this.allData.bspectrumBlock.numberBChannels,
+ data: str === "G" ? this.dataSourceSpectrumX_G : this.dataSourceSpectrumX_B
},
grid: {
left: '3%',
@@ -641,12 +648,13 @@ export default {
lineStyle: {
color: "rgbA(64, 105, 121, 0.2)"
}
- }
+ },
+ scale: false
},
dataZoom: [
{
start: 0,
- end: 20
+ end: 255
}
],
series: [
@@ -704,6 +712,8 @@ export default {
color: "rgbA(64, 105, 121, 0.2)"
},
},
+ interval:65,
+ max:260
},
yAxis: {
scale: false,
@@ -713,6 +723,8 @@ export default {
color: "rgbA(64, 105, 121, 0.2)"
},
},
+ interval:65,
+ max:260
},
tooltip: {
trigger: "item",