Skip to content

Highcharts Feature: Links on Points

Alexander Nedomansky edited this page Mar 27, 2018 · 1 revision

Supported by:


You can redirect the user to a different URL when she clicks on a point in a series of your chart by using the class [RedirectFunction] (http://thombergs.github.io/wicked-charts/apidocs/com/googlecode/wickedcharts/highcharts/options/functions/RedirectFunction.html):

options.addSeries(new PointSeries()
  .setData(new Point(1,2)
    .setEvents(new Events()
      .setClick(new RedirectFunction("https://github.com/thombergs/wicked-charts"))));