私は配列を持っています。Var myArray = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'];
配列でデフォルトのツールチップを変更したい。バーからの最初のツールチップの値は「a」、2 番目は「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>