我有一个数组。var myArray = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'];
我想用我的数组更改默认工具提示。其中 bar 中第一个工具提示的值是“a”,第二个是“b”,一直到“i”。
像这张照片:
我该怎么做?
这是我的代码
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column'
},
title: {
text: 'Monthly Average Rainfall'
},
subtitle: {
text: 'Source: WorldClimate.com'
},
xAxis: {
categories: [
'Jan',
'Feb',
'Mar'
]
},
yAxis: {
min: 0,
title: {
text: 'Rainfall (mm)'
}
},
legend: {
layout: 'vertical',
backgroundColor: '#FFFFFF',
align: 'left',
verticalAlign: 'top',
x: 100,
y: 70,
floating: true,
shadow: true
},
tooltip: {
formatter: function() {
var myArray = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'];
var i =0;
i++;
return ''+myArray[i] ;
}
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'Tokyo',
data: [49.9, 71.5, 106.4]
}, {
name: 'New York',
data: [83.6, 78.8, 98.5]
}, {
name: 'London',
data: [48.9, 38.8, 39.3]
}, {
name: 'Berlin',
data: [42.4, 33.2, 34.5]
}]
});
});
});
</script>