jwyu 2 年之前
父节点
当前提交
755976842c
共有 2 个文件被更改,包括 31 次插入15 次删除
  1. 9 0
      src/components/chart.vue
  2. 22 15
      src/views/chartShow/index.vue

+ 9 - 0
src/components/chart.vue

@@ -8,6 +8,7 @@ import { defineComponent, ref, watch, onMounted, PropType } from 'vue';
 import Highcharts from 'highcharts/highstock';
 import HighchartszhCN from '@/utils/highcahrts-zh_CN';
 import { defaultOpts } from '@/utils/chartOptions';
+import { log } from 'util';
 
 HighchartszhCN(Highcharts);
 
@@ -30,6 +31,14 @@ export default defineComponent({
     const init = (): void => {
       const new_options: any = { ...defaultOpts, ...props.options };
       console.log(new_options);
+      
+      // 相关性图设置offset
+      if(new_options.isRelevanceChart){
+        console.log(document.getElementById('container')?.offsetHeight);
+        const h=document.getElementById('container')?.offsetHeight
+        new_options.xAxis.offset=-(h-80)/2
+      }
+      
 
       //stock不支持线形图只支持时间图 画散点图用原始chart
 			let is_linear = props.options.series 

+ 22 - 15
src/views/chartShow/index.vue

@@ -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 = {