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}]
}
]
}
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.
Source: stackoverflow.com
Related Query
- Highchart IRREGULAR Spline with drilldown - cannot get drilldown functional
- time data with irregular intervals in HighChart
- Cannot get a series 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
- I had follow someone code samples and try apply to my HighChart program but I can't get it work at all
- Column based Highchart drilldown series assign color code to each column
- R efficient Drilldown chart with loop using Highchart
- Why code of Horizonal line(y-axis) on a single in Highcharts get applied to all other charts integrated with Webdatarocks
- highchart get each drilldown categories name on click event
- Get point by ID from highchart with multiple series
- 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 multiple level drilldown click event get drilldown series data
- Cannot get Highcharts to show in 3D with data from mysql database
- 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?
- How to get rangeSelector to work with HighCharts
- 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
More Query from same tag
- Unbind the Click Action on xAxis Labels In Drilldown
- HIghcharts: Hide particular Bar in Bar chart
- Highcharts stacked percentage area
- Highcharts: How can I associate a pre-formatted value with a data point?
- Highcharts view full screen in older version
- Displaying dynamic data using charts and graphs in ruby on rails
- Rendering a table with Chart.renderer.text
- Getting Multiple drilldown highcharts on same page to work
- Highcharts minPointLength on columnrange not working
- Can we control the Zoom Level when we click on the cluster in Highcharts?
- Adding data to a highchart chart using an array with IDs
- Add additional data to a Highcharts series for use in formatters
- Using highcarts in react native and getting the error
- How to display several labels in Highchart.js?
- How to plot a highstock single line series graph from ajax data
- How to use Sankey chart from highchart in Angular5
- is it possible to add a filter to highcharts?
- SQL time stamp to millisecond
- Adding multiple dynamic lines to highcharts
- Use django variable (array of elements from sqlite3 database) inside javascript embedded code
- Highcharts: Stacking a column inside of another column
- Highcharts, ROR, how to get labels working
- Creating multiple series in Highcharts within a loop
- Set 'src' attribute for document.createElement('script')?
- Using an input box to get a variable?
- Updating plotOptions bar color on a click event
- Shared events highcharts
- Highcharts | Label width control in bar charts
- Can I load the columns (each series) one by one in a HighChart JS?
- Need an OrgChart using Highcharts