Browse Source

Merge branch 'need_pool304'

Karsa 1 year ago
parent
commit
9d99c41ce5
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/views/chartShow/index.vue

+ 4 - 3
src/views/chartShow/index.vue

@@ -1194,6 +1194,7 @@ export default defineComponent({
       console.log(state.options)
     }
 
+
     /* 获取图表详情后赋值柱状图数据 */
     const initBarData = (data: { XEdbIdValue: number[]; YDataList: any; EdbInfoList: any; ChartInfo: any; }) => {
       const { XEdbIdValue,YDataList,EdbInfoList,ChartInfo } = data;
@@ -1203,7 +1204,7 @@ export default defineComponent({
       state.barEdbData = EdbInfoList;
       state.chartLimit = {
         min: Number(ChartInfo.LeftMin),
-        max: Number(ChartInfo.LeftMax)
+        max: Number(ChartInfo.LeftMax),
       }
 
       setBarChart();
@@ -1212,7 +1213,7 @@ export default defineComponent({
       x轴为指标名称的柱形图 以日期作为series
     */
     const setBarChart = () => {
-      const {barDateList,barXIdData,chartLimit,barEdbData} = state;
+      const {barDateList,barXIdData,chartLimit,barEdbData,chartInfo} = state;
       let seriesData: { data: any; type: string; yAxis: number; name: any; color: any; chartType: string; }[] = [];
       const data = _.cloneDeep(barDateList);
 
@@ -1240,7 +1241,7 @@ export default defineComponent({
       let yAxis = {
         ...basicYAxis,
         title: {
-          text:  ``,
+          text:  language.value==='ch' ? chartInfo.Unit : chartInfo.UnitEn,
           align: 'high',
           rotation: 0,
           y: -15,