I am trying to display a parliament (item) chart with highcharts, using the basic example in their site.
In it, the very first configuration item says:
chart: {
type: 'item'
},
And so this I use in my Vue.js project.
However, upon deploying I get an error in the console prompting to https://www.highcharts.com/errors/17/?missingModuleFor=item. There, the error message explains:
The requested series type does not exist
This error happens when setting
chart.typeorseries.typeto a series type that isn't defined in Highcharts. A typical reason may be that the module or extension where the series type is defined isn't included.For example in order to create an
arearangeseries, thehighcharts-more.jsfile must be loaded.
For this, I assume I am not importing the chart. However, how can I find out which one to import?