score:12
Accepted answer
You need to catch the event
. See the chart.events.drillup
API doc.
To get the series and points in the series you would do something like:
events: {
drillup: function (e) {
console.log(this);
console.log(this.options.series[0].name);
console.log(this.options.series[0].data[0].name);
}
}
Since you did not state which series or points you wanted this is the most general method.
Link to the updated working FIDDLE
score:1
chart: {
type: 'column',
events: {
drillup: function (e) {
alert(e.seriesOptions.name);
}
}
}
From the below line,
e.seriesOptions.name
You will get the series name, which you are loading, by clicking that back button(drill up button).
Source: stackoverflow.com
Related Query
- Highcharts : Chart with drilldown how to obtain click event of drill up button
- Highcharts chart click event fired on click of the reset zoom button (bug?)
- highcharts how to catch and insert logic in click reset zoom button event
- Fire click event on a highchart column drilldown chart on clicking x axis for drill down reports
- Highcharts : How do I keep the marker formatting and make the click event fire with a 5K+ point scatter plot?
- Highcharts - how to export chart with different scale in one click
- I am using click event to trigger a new page to generate the drill down data from highcharts however the entire chart is being generated
- How to create a multi y-axis chart with drill down in Highcharts
- Highcharts piechart with slice animation and drilldown on click together throws exception in chart and breaks the pie chart
- Click event in drilldown chart - Highcharts
- How to call EventEmitter on click event with HighCharts
- highcharts line chart with same x value, how to handle click events
- Highcharts - how to have a chart with dynamic height?
- Highcharts Pie Chart Drilldown not showing on third drill
- In high chart how to add event for label click
- Highcharts chart with 'datetime' xAxis - use categories on drilldown
- How to pass custom data into Highcharts graph click event
- how to get chart object inside a point event function in Highcharts
- how to reset Highchart chart width in percentage on Button click
- Add onclick event on chart made with the highcharts library
- Highcharts 3.0, area chart with stacked and unstacked series - how to fix?
- How to export CSV and XLS with external button in Highcharts
- How to call typescript function inside High chart click event
- HighCharts: How to Determine on Click Event what Data Grouping the Chart is Currently In?
- How to trigger a legend click in HighCharts with jQuery?
- How to attach click event function in Highcharts
- Highcharts multiple column chart with drilldown, correct formatting of drilldown axes
- How to add series after click event in HighCharts
- How to Build a Column Chart in Highcharts with Data Entered Dynamically Within a CMS
- Highcharts: How to change or redraw a chart when a click event occurs on an another chart?
More Query from same tag
- Add Offline Export chart capability in Angular-8
- How to format the series data date value to compare with database field?
- How to export the whole page or html content with Highcharts not just the chart?
- HighStock baseSeries value is not getting updated
- High Chart line single data set but multiple color, not gradient color
- highcharts animation multiple spline per second
- Pie Chart keeps loading and never stops
- Get xAxis extremes before fire afterSetExtremes in higcharts
- Click to URL irregular highcharts graph
- In HighChart (Scattar ) while adding dynamic data, existing data geting removed randomly
- Grouping x axis labels for histogram in high charts
- Highcharts: convert columns to stacked column in multiple axis chart
- Conflict between Google Polymer and Highcharts library
- How to Add button in React Highchart Tooltip?
- How add the straight line between bubbles in highchart
- How to remove the white outline/border on Highcharts 3D on setData?
- Show N/A in datalabels, when value is null - Highcharts
- how to show the little circle in tooltip of highcharts
- Highcharts converting a column chart to a pie chart
- How to get vertical scrollbar in highstock for heatmap chart
- Highcharts access drilldown data from event click
- Highcharts Pie chart not accepting values
- Highchart - overlapping label should NOT be hidden
- Remove first and last grid lines in highcharts?
- Javascript /jQuery Stock Chart API with multiple separate axis but combined interaction (pic included)?
- Handling axis scale change when a legend item is clicked & hidden
- Google Pie chart, can't set different values for 2 different graphs
- Calculating percentage value for each serie in highcharts
- Display highchart figure in ASP.NET MVC5 view
- Adding a JSON Response to a HighCharts Graph