I'm working with High Charts (http://www.highcharts.com/) to get some interactive charts for my webpage. I'm attempting to create a timeline of sorts using a column range chart and a bunch of series.
dataLabels: {
enabled: true,
align: 'middle',
crop: false,
style: {
fontWeight: 'bold'
},
verticalAlign: 'middle',
formatter: function () { return 'CenterThis' }
}
Currently I've created the above example. I've been trying to find a way to center the labels for a given series in the bar itself, however it seems to always want to label each data point. Is there a simple way to do this that I'm not seeing? The high charts documentation for series (http://api.highcharts.com/highcharts#plotOptions.series.dataLabels) didn't seem to have a property for this sort of thing.
Thank you for any help.