Multiple Boxplots in one HighCharts chart

832 Views Asked by At

I am trying to show two different boxplots in one chart. This should be possible as can be seen here: http://jsfiddle.net/maw3rd18/3/

In my actual code I have the exact same code as in the fiddle, however it does not work. The result looks like this. Totally not like a boxplot.

To be precise, in my actual code I use angular-js. I tend to think my issue has something to do with angular.js. I use the highcharts-ng module. The boxplots need an additional javascript library from highcharts called highcharts-more. Maybe highcharts-ng (angular.js module) is not compatible with highcharts-more (js library)? I have no idea.

1

There are 1 best solutions below

0
On BEST ANSWER

okay, problem was related to declaring the chart-type as a boxplot.

in native highcharts it's done like this (as can be seen in the fiddle):

chart: {
    type: 'boxplot'
},

However, when using angularjs highcharts-ng module, we need to use the following code:

options: {
    chart: {type: 'boxplot'}
},

That's it.