score:0
the only way i have found to do this popup is by adding this function in the end of the function building the chart :
var titles = $("tspan");
$("tspan").each(function(index) {
if( (this.textContent.indexOf("cashiers data") !== -1) ){
$(titles[index]).click(function(){
alert('to use our new cashiers bars \n'
+'please contact us at our contact page');
return false;
})
}
});
score:1
A popup like that is not in the Highchart API for the legend. The closet thing is Legend.ItemOnHover
legend: {
itemHoverStyle: {
color: '#FF0000'
}
}
But that really only styles it.
The way you are currently doing it is probably fine if you are careful about it.
score:1
You can try to add tooltip to the legend item, like in the related topic Add tooltip to legend in highcharts when hovering
Source: stackoverflow.com
Related Query
- add message on hover series name highcharts
- Highcharts - Add Series Name As X-Axis Label
- How can I add a link to a Highcharts series name in the legend?
- HighCharts Hide Series Name from the Legend
- Add additional data to a Highcharts series for use in formatters
- highcharts - disable fading series on marker hover
- Add series total to legend in Highcharts
- remove series by name or id in highcharts
- Highcharts - How to hide series name and Y value in tooltip
- Add a gap between the second and third series in a Highcharts column plot with four series displayed
- Highcharts add series dynamically
- Highcharts - get visible series name dynamically
- Stop HighCharts change transparency of another series on hover of one series
- Highcharts add tooltip that has a small arrow pointing toward the series
- Dynamically add data to series in Highcharts
- Highcharts JS- add third variable to tooltip for two series
- HighCharts : Highlight entire series when hover and restore state when out
- Highcharts - Tooltip and series name are out of their boxes in chrome
- Showing HighCharts series name on x-axis and in legend
- How to remove a series in Highcharts by name
- How to add series after click event in HighCharts
- How do i add mouse wheel code in Angular2 highcharts in typescript
- How to get Series Name Based on Selection in Highcharts
- Highcharts error when add and shift data to hidden series
- Missing series name as label in highcharts heatmaps
- How to add multiple series in highcharts synchronously
- Dynamically add an event to Highcharts series
- How to get columns category name on hover in highcharts
- Treemap in highcharts display series name and value in treemap only
- How to add Series data in Highcharts from MVC
More Query from same tag
- Highcharts line chart all points disappear when have more than one points with same X Axis
- Highcharts with JSON data and multiple series
- Highcharts range selector doesn'n work
- How do you insert custom dynamic values to subtitle?
- Gartner magic quadrant in highcharter
- Highcharts displays series names but missing data points from json source
- Highcharts : Under Y Axis we need to display a Image
- Remove Selection Of bar in highchart with hover working
- Filter categories in highcharts by using checkboxes
- Highcharts add button fix chart
- Highcharts.js setting a threshold value for changing column color
- Highcharts and highstock license with google ads web site
- How to use high charts in Angular?
- Highcharts : How to flag the local maxima on a dynamic graph drawn using HighChart
- Donut Highcharts set different colors inner and outer data
- Highstock Data Grouping to Use Last Data Time as Index
- Chart data of object gets overwritten, but only the first object that is interacted with is affected
- highcharts-ng grows but doesn't shrink in flexbox
- Tool tip formatter for donut highcharts
- customized tooltip and linking values to formfields -- highcharts / columnrange
- HighCharts : Highlight entire series when hover and restore state when out
- Dynamic query for high charts
- highcharts 7 issue with negative ticks
- highcharts scatter with 4 quadrants
- Different Highcharts in same component (Angular 5)
- Highcharts.js cannot see graph line
- Highstock compare How to compare current data point with the previous data point
- Highcharts (Highstock): Get data from external CSV, doesn't display date correctly
- How to get my categories with date in xAxis?
- Customizing the series data in pie charts with a dynamic json series (HighCharts)