score:2
The issue is now that you are providing a drilldown.id
on the series. You need to do it per point. For example:
series: [{
name: 'Things',
colorByPoint: true,
data: [{
name: 'Animals',
y: 5,
drilldown: 'animals'
}, {
name: 'Fruits',
y: 2,
drilldown: 'fruits'
}, {
name: 'Cars',
y: 4,
drilldown: 'cars'
}]
}],
It looks to me like you want to have any drilldown on a point in "Fruits" to link to the same drilldown series. This is doable:
series: [{
name: 'Fruits',
data: [{
x: Date.UTC(2014, 7, 19),
y: 12,
drilldown: 'fruits'
}, {
x: Date.UTC(2014, 8, 19),
y: 5,
drilldown: 'fruits'
}, {
x: Date.UTC(2014, 9, 19),
y: 18,
drilldown: 'fruits'
}]
},
See update fiddle.
score:0
But here also U dont get 2 splines after clicking on fruits, u just get one. Is there any way to get that as i have the same issue fiddle https://jsfiddle.net/surya_swami/zx9dy3uj/40/
drilldown: { series: [{id:"z1",name: "Region-1",
data: [{ name : "July",y: 10},
{ name : "Aug",y: 21},
{ name : "Sept",y: 15}]
},
{id:"z1",name: "Region-2",
data: [{ name : "July",y: 12},
{ name : "Aug",y: 9},
{ name : "Sept",y: 25}]
},
{ id:'z2',name:'Region-3',
data : [{name:'July',y:23},
{name:'Aug',y:41},
{name:'Sept',y:31}]
},
{ id:'z2',name:'Region-4',
data : [{name:'July',y:33},
{name:'Aug',y:23},
{name:'Sept',y:12}]
},
{ id:'z2',name:'Region-5',
data : [{name:'July',y:31},
{name:'Aug',y:39},
{name:'Sept',y:19}]
}
]
}
Source: stackoverflow.com
Related Articles
- Highchart IRREGULAR Spline with drilldown - cannot get drilldown functional
- time data with irregular intervals in HighChart
- Highchart Time Data With Irregular Interval and Text
- Highchart Drilldown with data call when clicked
- my highchart is currently is not working with pie spline chart in updating after rendering chart
- Cannot display a legend with special character in highchart from the serie name
- Cannot display name with special character in highchart
- Column based Highchart drilldown series assign color code to each column
- R efficient Drilldown chart with loop using Highchart
- Highchart spline Chart with no markers and legends markers as circle's
- Highchart spline Cut Off when reach to maximum scale value. How can it fixed?. I have attached may sample code on body
- highchart custom menu with when i drilldown and drillup custom event (contextmenu) not working
- Highchart Column with Drilldown using MySQL
- highchart with drilldown where data for main chart and drilled down chart are from different xml files
- Highchart Spline with inverted axis categorie text left align
- Drilldown multiple levels Highchart
- creating highchart with ajax json data
- How to create a new Highstock chart with new Highchart and not jquery?
- Highchart Area Range chart with gradient that follows the line
- Change color of bars depending on value in Highchart bar-chart with MVC3
- set a symbol marker with highchart
- Plot Highchart Gauge with JSON Data
- Optimize JavaScript DrillDown code
- Highcharts : Chart with drilldown how to obtain click event of drill up button
- HighChart Heatmap with JSON data
- How to display highchart y axis with constistant data
- Export HighChart as an image in excel file together with the other page contents
- Highchart data series filled with different colors
- Highcharts chart with 'datetime' xAxis - use categories on drilldown
- body click issue with highchart library
- I need the Y axis values in integer instead of decimal values in Dynamic Chart
- How to start highchart column chart from left most corner of x-axis?
- Formatting tooltip in Highcharts
- Highstock/Chart created from html table fails if null value in first table row
- How to shift Highchart's line chart from simple html to Flask?
- Highchart error#15 on trying to plot seperated vertical lines
- Highcharts automatic resize using drag/resize react-rnd library
- Highchart angular overflows container
- how to aggregate data from mongodb collection to highstock series data format
- Highcharts: Add plotlines based on enabled series
- Dual Axes Column Chart scaling issue for column chart
- How can I disable on hover marker animation in Highcharts 6.x?
- How do I display multiple charts automatically with PHP and MYSQL?
- Combine xAxis Highcharts
- Error: Template parse errors: Can't bind to 'options' since it isn't a known property of 'chart'
- How can I take a backingbean GSON string to Highcharts
- Two way data binding in Angular JS for graphs implemented using HighCharts
- How to implement Highchart in AngularJS.i was trouble with implementation highchart in angular
- How do I add a tooltip to the x-axis labels in highcharts?
- Highchart: Bubble heading is not showing if two bubbles intersect or comes near one another in Bubble chart