Axis Flags lineWidth problem
by kzoon
HTML
<script src="http://code.highcharts.com/stock/highstock.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'line'
},
xAxis: [{
id: "1",
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
/* {
id: "2",
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
}*/
],
plotOptions: {
series: {
allowPointSelect: true
}
},
series: [{
//xAxis:"1",
data: [78.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 87.4]
}, {
type: 'flags',
showInLegend: false,
//xAxis:"2",
data: [{
x: 2,
title: "A",
text: 'Start of campaign'
}, {
x: 8,
title: "*",
text: 'End of Campaing'
}],
width: 16,
height: 16,
y: -40,
lineWidth: 2
//lineWidth: 2
}]
});
});