2015-01-12 84 views
0

我有3個x軸,但它們的標籤不可見。 整個想法是有條thiner,以及足夠多的空間標籤Highchart多軸標籤不顯示

http://jsfiddle.net/rnz9ybuq/1/

xAxis: [ 
      { 
       categories: ['01/14', '02/14', '03/14'], 
       title: { 
        text: "left column" 
       } 
      }, 
      { 

       categories: ['stuff 1', 'stuff 2', 'stuff 3'], 
       opposite: true, 
       title: { 
        text: "1st right column" 
       } 

      }, 
      { 
       opposite: true, 
       title: { 
        text: "2nd right column" 
       }, 
       categories: ['thing 1', 'thing 2', 'thing 3' ] 
      } 
     ], 
     yAxis: { 
      opposite: true, 
      min: 0, 
      max: 100, 
      labels: { 
       enabled: false 
      }, 
      title: { 
       text: "Data" 
      } 
     }, 

The bad result

我想我失去了一些東西簡單

回答