实际上,我开始使用jquery和highcharts,问题是高图不会显示工具提示中的条形数量。
这是我的代码。
function pobox() {
var poBox = JSON;
$(function() {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Cantidad Mensual de paquetes POBOX'
},
subtitle: {
text: 'fuente: BD'
},
xAxis: {
categories: [
'Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'
],
crosshair: true
},
yAxis: {
min: 0,
title: {
text: 'Ventas'
}
},
legend: {
enabled: false
},
plotOptions: {
column: {
dataLabels: {
enabled: true,
formatter: function() {
return this.point.custom;
}
}
}
},
tooltip: {
crosshairs: true,
formatter: function() {
return '<strong>Value: </strong>' + this.point.custom + 'units' + '<br/><strong>Percent: </strong>' + this.y;
}
},
series: poBox
});
});
}
}
});
}
&#13;
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Start Graphic one -->
<button type="button" class="button" onclick="pobox()">Enviar</button>
<div id="container" style="width:90%; height:250px;">
&#13;
我收到了JSON作为参数。但是当鼠标悬停在栏上时,如何显示栏的值。