Karsa 3 years ago
parent
commit
ab06297ffa
2 changed files with 4 additions and 3 deletions
  1. 1 0
      src/utils/chartOptions.ts
  2. 3 3
      src/views/chartShow/index.vue

+ 1 - 0
src/utils/chartOptions.ts

@@ -81,6 +81,7 @@ export const defaultOpts = {
     tickColor: '#bfbfbf',
     type: 'datetime',
     tickLength: 5,
+    ordinal: false,
     dateTimeLabelFormats: {
       day: '%y/%m',
       week: '%y/%m',

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

@@ -319,14 +319,14 @@ export default defineComponent({
           }
 
         //是否调整tickInterval 公历年份大与1 农历年份大于2
-        let bool_dealx =  (state.chartInfo.Calendar === '公历' && chartData.Frequency === '周度' && chartData.DataList.length > 1)
-                      || ( state.chartInfo.Calendar === '农历' && chartData.Frequency === '周度' && chartData.DataList.List.length > 2)
+        // let bool_dealx =  (state.chartInfo.Calendar === '公历' && chartData.Frequency === '周度' && chartData.DataList.length > 1)
+        //               || ( state.chartInfo.Calendar === '农历' && chartData.Frequency === '周度' && chartData.DataList.List.length > 2)
 
 
         // 季节图x轴显示月/日 周度指标额外处理时间轴显示
         const xAxis = {
           ...defaultOpts.xAxis,
-          tickInterval: bool_dealx ? 24 * 3600 * 1000 : null,
+          // tickInterval: bool_dealx ? 24 * 3600 * 1000 : null,
           labels: {
             formatter: function (ctx: any) {
               return Highcharts.dateFormat('%m/%d', ctx.value);