|
@@ -197,9 +197,9 @@ export default defineComponent({
|
|
|
let yAxis={
|
|
|
...basicYAxis,
|
|
|
title: {
|
|
|
- text: '相关性系数',
|
|
|
- textCh: '相关性系数',
|
|
|
- textEn: 'Correlation coefficient',
|
|
|
+ text: language.value=='ch'?'相关性系数':'Correlation coefficient',
|
|
|
+ // textCh: '相关性系数',
|
|
|
+ // textEn: 'Correlation coefficient',
|
|
|
align: 'high',
|
|
|
rotation: 0,
|
|
|
y: -15,
|
|
@@ -226,9 +226,9 @@ export default defineComponent({
|
|
|
data: item.Value,
|
|
|
type: 'spline',
|
|
|
yAxis: 0,
|
|
|
- name: data.ChartInfo.ChartName,
|
|
|
- nameCh: data.ChartInfo.ChartName,
|
|
|
- nameEn: data.ChartInfo.ChartNameEn,
|
|
|
+ name: language.value=='ch'?data.ChartInfo.ChartName:data.ChartInfo.ChartNameEn,
|
|
|
+ // nameCh: data.ChartInfo.ChartName,
|
|
|
+ // nameEn: data.ChartInfo.ChartNameEn,
|
|
|
color: item.Color,
|
|
|
chartType: 'linear',
|
|
|
lineWidth: 3,
|
|
@@ -240,18 +240,25 @@ export default defineComponent({
|
|
|
})
|
|
|
|
|
|
let tooltip = {
|
|
|
+
|
|
|
formatter: function() {
|
|
|
- let str = `<p>相关性系数:${this.y}</p>`
|
|
|
- return str
|
|
|
- },
|
|
|
- formatterCh: function() {
|
|
|
- let str = `<p>相关性系数:${this.y}</p>`
|
|
|
+ let str=''
|
|
|
+ if(language.value=='ch'){
|
|
|
+ str = `<p>相关性系数:${this.y.toFixed(4)}</p><br><p>领先${this.x}期</p>`
|
|
|
+ }else{
|
|
|
+ str = `<p>Correlation coefficient:${this.y.toFixed(4)}</p><br><p>lead${this.x}stage</p>`
|
|
|
+ }
|
|
|
+
|
|
|
return str
|
|
|
},
|
|
|
- formatterEn: function() {
|
|
|
- let str = `<p>Correlation coefficient:${this.y}</p>`
|
|
|
- return str
|
|
|
- }
|
|
|
+ // formatterCh: function() {
|
|
|
+ // let str = `<p>相关性系数:${this.y.toFixed(4)}</p><br><p>领先${this.x}期</p>`
|
|
|
+ // return str
|
|
|
+ // },
|
|
|
+ // formatterEn: function() {
|
|
|
+ // let str = `<p>Correlation coefficient:${this.y.toFixed(4)}</p><br><p>lead${this.x}stage</p>`
|
|
|
+ // return str
|
|
|
+ // }
|
|
|
}
|
|
|
|
|
|
state.options = {
|