使用两个不同的 yAxis 刻度高图表定义 yAxis 值



你好,我有一个带有Highcharts的图表,它是一个带有两个不同yAxis的折线图。左边一个图形百分比,右边一个图形百分比。我想将左边"硬编码"为这个比例"0%,20%,40%,60%,80%,100%"

这是我的代码

   var chartTot = {
     chart: {
         renderTo: 'grafTot',
         type: 'line',
         marginBottom: 110,
     },
     legend: {
         itemDistance: 20,
         itemWidth: 190
     },
     title: {
         text: ''
     },
     plotOptions: {
         series: {
             marker: {
                 enabled: false
             }
         }
     },
     xAxis: {
         categories: $scope.hours
     },
     yAxis: [{ //1st yAxis
             title: {
                 text: 'Clients %'
             },
             min: 0, // I want my graphic 0 to 100 but with this i get 
             max: 100, // 0- 120 because of the second axis 
             labels: {
                 format: '{value} %',
             },
         },

         { //2nd yAxis
             title: {
                 text: 'Minutes'
             },
             min: 0,
             max: 60,
             labels: {
                 format: '{value} min',
                 style: {
                     color: Highcharts.getOptions().colors[6]
                 }
             },
             opposite: true
         }
     ]
 };

如何定义第一个 yAxis 刻度并保留第二个动态?

多谢

您应该将 alignTicks 设置为 false

相关内容

  • 没有找到相关文章

最新更新