/
Create Clickable Highcharts/Highmaps
Create Clickable Highcharts/Highmaps
In Highmaps and Highcharts, you can define events that will be triggered when the user clicks in the map/chart. This can be useful to build a drilldown feature.
Use the following method:
public ResultHighchart.OnPointClick onPointClick()
Example:
def chart = api.buildHighchart(definition) chart.onPointClick().triggerEvent(api.dashboardWideEvent("eventName")) .withNameAsEventDataAttr().withCustomEventDataAttr("value") return chart
This allows to refresh an embedded dashboard:
return api.dashboard("embeddedDashboardName") //.setParam("country_name", api.input("Country")) //.setParam("country_revenue", api.input("Revenu")) .showEmbedded() .andRecalculateOn(api.dashboardWideEvent("eventName")) .withEventDataAttr("name").asParam("country_name) .withEventDataAttr("value").asParam("country_revenue")
Check out also the API Documentation.
, multiple selections available,
Related content
Highcharts
Highcharts
Read with this
How to Create Highchart
How to Create Highchart
More like this
Custom Context Menu Items in Highcharts
Custom Context Menu Items in Highcharts
More like this
Create Chart
Create Chart
More like this
Create Actions/ Watchers from Charts
Create Actions/ Watchers from Charts
More like this
How to Create an Interactive Embedded Dashboard
How to Create an Interactive Embedded Dashboard
Read with this
Found an issue in documentation? Write to us.