当我在 xaxis 上的两个点之间使用 plotbands 并使用 pointLines 在这两个点之间画一条线时,它永远不会出现但是如果你在 yAxis 上做同样的事情,一切都很好,这是我的代码
$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
xAxis: {
plotBands: [{ // mark the weekend
color: 'rgba(68, 170, 213, 0.2)',
from: Date.UTC(2010, 0, 2),
to: Date.UTC(2010, 0, 4)
}],
plotLines:[{
value: Date.UTC(2010, 0, 3),
color: 'green',
dashStyle: 'shortdash',
width: 2,
}],
plotLines:[{
value: Date.UTC(2010, 0, 6),
color: 'green',
dashStyle: 'shortdash',
width: 2,
}],
tickInterval: 24 * 3600 * 1000, // one day
type: 'datetime'
},
yAxis:{
plotLines:[{
value : 200,
color: 'green',
dashStyle: 'shortdash',
width: 2,
}] ,
plotBands: [{ // mark the weekend
color: 'rgba(68, 170, 213, 0.2)',
from: 150,
to: 250,
}],
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4 , 255.7],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000
}]
});
});
我也 jsFiddle 它http://jsfiddle.net/MsCqR/3/