How to add drilldown to stacked column chart? - highcharts

I have seen the demo for drill down column chart, but I want to add it to stacked column chart.
http://www.highcharts.com/demo/column-drilldown
There is no drill down option in data series for stacked columm ? e.g.
"series":[
{
"name":"John",
"data":[5],
"drilldown":[
{"name":"a","data":[25]},
{"name":"b","data":[43]},
{"name":"c","data":[24]},
{"name":"d","data":[23]}
]
}
]

Related

Line and column combo chart with multiple columns for each category, how to position line marker for each category on a specific column?

I have a chart that looks like the below. The line is a rolling average of the third column from each category. I would like to position the marker for the line in the middle of the green/yellow column rather than the middle of the black, for each category. Is this possible?
Use pointPlacement property:
series: [..., {
pointPlacement: 0.2,
...
}]
Live demo: http://jsfiddle.net/BlackLabel/6m4e8x0y/4810/
API Reference: https://api.highcharts.com/highcharts/series.line.pointPlacement

How do I avoid overlapping bars in a columnrange chart?

I have the following columnrange chart:
http://jsfiddle.net/2a2asax2/1
My problem is, that some of the columns in the "closed" category are plotted on top of each other. How do I separate them, so that they are printed underneath each other instead?

How to create navigator series for Highstock stacked column chart

I have a stacked column chart. In this chart the navigator is blank and it doesnt show the proper line.
I want create the series for stacked column chart. What should be the structure of the series?

How to drilldown from Column Chart to Stacked Column Chart using High Charts

Can we drilldown from Column Chart to Stacked Column Chart using High Charts ? , Is there any demo / example ?

Column chart not showing series properly in Highcharts

I have the following charts where the series data is an array of config objects:
enter code herehttp://jsfiddle.net/AANAB/
http://jsfiddle.net/AANAB/1/
Try changing the chart type to pie.If you observe now three series will be shown.Why does the column chart consider this as one series and the pie chart as 3 series? My requirement is to be able to render the column chart and pie chart as three separate series for the same given data. Is this possible?
First and foremost thing,
pie and column are 2 completely different types of charts.
column can be said as a graph, and pie as a chart.
column chart has 2 axes namely x and y while pie is distributing the area proportionally.
there is no mistake in this one. they are rendered properely.
For pie chart the structure accepted is
{
name: name of the slice,
y: value of the slice
}
each slice has its own name like the xAxis categories we provide for column chart.
the Y has the value is common for all the highcharts.
so here what i recommend is to maintain the datasets differently for both column and pie to get what you have required.
All works properly, in pie chart you have different colours, only, so you can set the same color then you achieve the same effect as in columns.

Resources