Highchartsを使用していて、xAxis上の任意のポイント間で複数のポイントを取得しようとしています。(たとえば、10月から11月の間に4ポイントが欲しいです。)これを行うにはどうすればよいですか?
y:に[]を追加して複数の値を指定しようとしましたが、うまくいきませんでした。何も機能しないようです。highchartsのWebサイトにこの例はありません。
$(function () {
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'area'
},
title: {
text: "Title"
},
credits: {
enabled: false
},
xAxis: {
categories: ["October", "November", "December", "January", "February", "March"],
tickmarkPlacement: 'on',
title: {
enabled: false
}
},
yAxis: {
title: {
text: 'Counts'
},
labels: {
formatter: function () {
return this.value;
}
}
},
tooltip: {
formatter: function () {
return '<strong>Count:</strong> ' + this.y + '<br><strong>Date:</strong> ' + this.point.date;
}
},
plotOptions: {
area: {
stacking: 'normal',
lineColor: '#666666',
lineWidth: 1,
marker: {
lineWidth: 1,
lineColor: '#666666'
}
}
},
series: [{
name: 'Views',
data: [{
y: 3,
date: 'October 9th, 2012',
unlocked: 1,
potential: 1,
}, {
y: 5,
date: 'October 12th, 2012',
unlocked: 1,
potential: 2,
}, {
y: 7,
date: 'October 14th, 2012',
unlocked: 1,
potential: 3,
}, {
y: 7,
date: 'October 18th, 2012',
unlocked: 1,
potential: 3,
}, {
y: 7,
date: 'October 22nd, 2012',
unlocked: 1,
potential: 3,
}, {
y: 7,
date: 'October 23rd, 2012',
unlocked: 1,
potential: 3,
}, ]
}, {
name: 'Replies',
data: [{
y: 3,
date: 'October 9th, 2012',
unlocked: 1,
potential: 1,
}, {
y: 5,
date: 'October 12th, 2012',
unlocked: 1,
potential: 2,
}, {
y: 7,
date: 'October 14th, 2012',
unlocked: 1,
potential: 3,
}, {
y: 7,
date: 'October 18th, 2012',
unlocked: 1,
potential: 3,
}, {
y: 7,
date: 'October 22nd, 2012',
unlocked: 1,
potential: 3,
}, {
y: 7,
date: 'October 23rd, 2012',
unlocked: 1,
potential: 3,
}, ]
}],
exporting: {
enabled: false
}
});
});
});