Skip to content Skip to sidebar Skip to footer

How Do You Create A Link On Highcharts To Open Up Pop Up Window With Another Chart

I am creating charts with highcharts. I like to put a link or button in a chart (possibley left-top corner) and when clicked, I like to call a function that shows another chart in

Solution 1:

I was able to do this:

subtitle: {
    useHTML:true,
    text:'<a href="#" onclick="myFunction()">by server chart</a>',
    align:'left'
       },

and in my function

<scripttype="text/javascript">functionmyFunction() {
           create the highchart syntax here
       }
  </script>

Post a Comment for "How Do You Create A Link On Highcharts To Open Up Pop Up Window With Another Chart"