是否可以将十字准线标签拖动?这样用户可以用鼠标移动十字准线标签远离x轴。
JS在这里小提琴:http://jsfiddle.net/qb2uee9r/1/
$.getJSON('https://www.highcharts.com/samples/data/aapl-c.json', function (data) {
// Create the chart
Highcharts.stockChart('container', {
chart: {
marginRight: 50
},
rangeSelector: {
selected: 1
},
title: {
text: 'AAPL Stock Price'
},
xAxis: {
crosshair: true
},
yAxis: {
opposite: true,
labels: {
align: 'left',
format: '{value:.2f}',
y: 6,
x: 2
}
},
series: [{
name: 'AAPL',
data: data,
tooltip: {
valueDecimals: 2
}
}]
});
});