2013-08-04 73 views
1

如何限制在Highcharts中的X軸上顯示勾號?最後一個是X軸的outter: enter image description hereX軸上的勾號位置

我來源:

var options = { 
chart: { 
    renderTo: 'chart', 
    events: { 
     load: function(event) { 
     } 
    }, 
    type: 'spline', 
    animation: false 
}, 
title: { 
    text: '' 
}, 
colors: [ 
    '#499878','black' 
], 
rangeSelector: { 
    enabled: false 
}, 
credits: { 
    enabled: false 
}, 
tooltip: { 
    shared: true, 
    crosshairs: true 
}, 






series: [{ 
    name: 'Temperature (°C)', 
    type: 'spline', 
    tooltip : { 
     valueDecimals: 2, 
     valueSuffix: ' °C' 
    }, 
    yAxis: 0, 
    color: '#89A54E', 
    data: [] 

},{ 
    name: 'Wind speed (m/s)', 
    type: 'spline', 
    tooltip : { 
     valueDecimals: 2, 
     valueSuffix: ' m/s' 
    }, 
    yAxis: 1, 
    color: '#4572A7', 
    data: [] 
},{ 
    name: 'Humidity (%)', 
    type: 'spline', 
    tooltip : { 
     valueDecimals: 2, 
     valueSuffix: ' %' 
    }, 
    yAxis: 2, 
    color: '#910000', 
    data: [] 
},{ 
    name: 'Wind direction (°)', 
    type: 'spline', 
    tooltip : { 
     valueDecimals: 2, 
     valueSuffix: ' °' 
    }, 
    yAxis: 3, 
    color: '#000000', 
    dashStyle: 'shortdot', 
    data: [] 
}], 



xAxis: { 
    type: 'datetime', 
    tickInterval: 10000, 
    min: 0, 
    max: 0 
}, 



yAxis: [{ 
    labels: { 
     style: { 
      color: '#89A54E' 
     } 
    }, 
    title: { 
     text: 'Temperature', 
     style: { 
      color: '#89A54E' 
     } 
    }, 
    gridLineWidth: 1, 
    opposite: true 
},{ 
    labels: { 
     formatter: function() { 
      return this.value +' m/s'; 
     }, 
     style: { 
      color: '#4572A7' 
     } 
    }, 
    title: { 
     text: 'Wind speed', 
     style: { 
      color: '#4572A7' 
     } 
    }, 
    gridLineWidth: 1, 
    opposite: false, 
    min: 0 
},{ 
    labels: { 
     formatter: function() { 
      return this.value +' %'; 
     }, 
     style: { 
      color: '#910000' 
     } 
    }, 
    title: { 
     text: 'Humidity', 
     style: { 
      color: '#910000' 
     } 
    }, 
    gridLineWidth: 1, 
    opposite: true 
},{ 
    labels: { 
     formatter: function() { 
      return this.value +' °'; 
     }, 
     style: { 
      color: '#000000' 
     } 
    }, 
    title: { 
     text: 'Wind direction', 
     style: { 
      color: '#000000' 
     } 
    }, 
    opposite: false, 
    reversed: true, 
    min: 0, 
    max: 360, 

    minorGridLineDashStyle: 'longdash', 
    minorTickInterval: 'auto', 
    minorTickWidth: 0, 
    tickInterval: 90 
}], 




plotOptions: { 
    spline: { 
     lineWidth: 3, 
     states: { 
      hover: { 
       lineWidth: 5 
      } 
     }, 
     marker: { 
      enabled: false 
     } 
    }, 
    scatter: { 
     marker: { 
      enabled: true 
     } 
    } 
} 
}; 
+0

請提供一些代碼... – Mark

+0

添加源代碼 – Martin

+0

這是實際的代碼還是你把它剪掉了? 1.)你沒有提供任何能夠重現問題的樣本數據,2.)爲什麼你的xaxis min/max設置爲0?當在SO上提出問題時,提供一個能夠重現問題的最小代碼示例被認爲是禮貌的。 – Mark

回答