I need to create box plot using HighCharts. The box plot must be horizontaly placed. Is there a way to accomplish this, without using inverted?
Example: https://jsfiddle.net/m4s0189f/11/
Highcharts.chart('container', {
chart: {
type: 'boxplot',
inverted: true
},
title: {
text: 'Highcharts Box Plot Example'
},
legend: {
enabled: false
},
xAxis: {
categories: ['1'],
title: {
text: 'Experiment No.'
}
},
series: [{
name: 'Observations',
data: [
[733, 853, 939, 980, 1080],
],
tooltip: {
headerFormat: '<em>Experiment No {point.key}</em><br/>'
}
}]
});