Karsa 2 years ago
parent
commit
fe41a95d6f
2 changed files with 5 additions and 5 deletions
  1. 3 0
      src/views/chartShow/index.less
  2. 2 5
      src/views/chartShow/index.vue

+ 3 - 0
src/views/chartShow/index.less

@@ -13,6 +13,9 @@
 		::v-deep(.highcharts-range-selector-group) {
 			display: none;
 		}
+		::v-deep(.highcharts-axis-title) {
+			font-size: 10px;
+		}
 		max-width: 1200px;
 		max-height: 100vh;
 		overflow: hidden;

+ 2 - 5
src/views/chartShow/index.vue

@@ -529,8 +529,8 @@ export default defineComponent({
           text:  `单位:${dataList[1].Unit}`,
           align: 'high',
           rotation: 0,
-          y: -15,
-          offset: 0,
+          y: -5,
+          offset: -20,
         },
         labels: {
           formatter: function (ctx: any) {
@@ -594,9 +594,6 @@ export default defineComponent({
     const setOptions = () => {
       // ChartType: 1曲线图 2季节图 3面积图 4柱状图 5散点图 6组合图  季节图中公历和农历数据结构不同
       const { chartInfo } = state;
-      // state.chartInfo.ChartType === 2
-      //   ? setSeasonOptions()
-      //   : setDefaultLineOptions();
       const chartSetMap: any = {
         1: setDefaultLineOptions,
         2: setSeasonOptions,