Karsa 2 years ago
parent
commit
4ac9987465
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/chartShow/index.vue

+ 1 - 1
src/views/chartShow/index.vue

@@ -428,7 +428,7 @@ export default defineComponent({
   
                   str=`<b>${ ponit_obj.Name }</b>`;
                   str += `<br><span style="color:${that.color}">\u25CF</span>${ponit_obj.XName}: ${that.x} ${ponit_obj.XDate}<br>`;
-                  str += `<span style="color:${that.color}">\u25CF</span>${ponit_obj.YName}: ${that.y} (${ponit_obj.YDate})`;
+                  str += `<span style="color:${that.color}">\u25CF</span>${ponit_obj.YName}: ${that.y} ${ponit_obj.YDate}`;
                 }else {
                   let series_obj = DataList.find(_ => _.NameEn === that.series.name);
                   let ponit_obj = series_obj.EdbInfoList.find(_ => _.XValue ===that.x && _.YValue===that.y);