Single series drilldown to multiple series Highcharts - highcharts

I need to drill down from a series to multiple series. But the drilldown id seems to be unique on a series, implying that I can't drilldown to multiple series from a single series; just one. How do I get round this?

It is possible to load series for drilldown in drilldown event using chart.addSingleSeriesAsDrilldown(e.point, series[0]); mulitple times with different series and next call chart.applyDrilldown();
Example: http://jsfiddle.net/49q18Lp3/

Related

Donut Chart Highcharts not rendering as expected

I am using Donut chart for displaying data categorized into two categories. Whenever dataseries is updated, sometimes Highcharts does not render the series data in provided order.
And because of this, data is not displayed as per category.
Expected Chart:
Current Behavior:
Series Options Provided :

Highcharts multiple stock series tooltip show

I have a question about several stock charts.
Put the series data into an array by name.
Hovering over the chart shows only one data.
I am curious how to make several together.
My code is here:
https://jsfiddle.net/HongRaeCho/rxpjy7nu/

highchart Stacked-area - Grouping small series

Is there a way to group small series in a new 'Others' series?
I have a chart with some series that are very small, so their areas almost doesn't appears in the chart. So, what I want is to group those small series making a new serie a little bigger called 'Others'.
I did it by grouping my small series before setting them to the chart, but I think it would be better if highchart do it by his own. This way, if we hide a serie clicking in its legend, the chart could recalculte and check if the 'Others' could be ungrouped.
For example:
http://www.highcharts.com/demo/area-stacked
Since Europe and Oceania series are the smallest areas in the chart, is it possible to set some property for Highchart group those 2 series in a new one, called 'Others'? And when we click on the legend to hide some serie, highchart dinamically recalculate to check if the 'Others' serie could be divided again the the 'real' series

How do I do a stacked bar chart as a drilldown to a stacked bar chart?

I just can't see how to stack the series for the drilldown. Do I add the drilldown chunks as:
drilldown = [{name: 'bob',
data: [series1, series2,series3],
id: drilldown_id}]
Currently the docs seems to indicate to add all the series in the data series, but I'm not getting it working. Currently don't have a jsfiddle as everything I'm doing is in Python, but can provide one if need be.
Update:
I understand from the docs that the series plotoptions for the drilldown are inherited from the parent series -- please correct me if this is wrong. I currently have multiple series with the same id, but they are not stacking currently.
Using drill down to multiple series from multiple series demo it is possible to change stacking to normal and get drilldown to stacked columns.
JSFiddle 1: http://jsfiddle.net/rxjutt6v/
Using async drill down demo and addSingleSeriesAsDrilldown with applyDrilldown it is possible to get multiple series in drilldown when drilling into single series point.
JSFiddle 2: http://jsfiddle.net/49q18Lp3/1/

Waterfall with two series using Highcharts

I'm trying to set two Waterfall series using Highcharts in the same chart, I have only see one serie in this type of chart in Highcharts samples. I have manipulate the data to be an array but still not working.
I mean two independent waterfall series (one next to each other no-stacked) , like column chart. Like this one (http://img854.imageshack.us/img854/6886/qghm.png)

Resources