Home Forums Feature Requests & Feedback Event handling on Chart

Event handling on Chart

Viewing 2 posts - 1 through 2 (of 2 total)
  • #4607

    Hi there,

    I’d like to have 16 or more charts on a page. The chart should contain real data.
    By clicking one of the charts id like to open a page with only that Chart

    Is this a possibility?

    Tim

    #4609

    Yes, you can do so. Because you don’t need event handler on any particular dataPoint/dataSeries but the entire Chart, you can directly use Chart’s Container element. Below is how

     

    <div id=”chartContainer” data-url=”https://canvasjs.com&#8221; style=”width: 600px; height: 300px;”></div>

     

    //Am using  jQuery here. You can do so even with plain javascript

    $(“#chartContainer”).click(function () {

    window.location.href = $(this).data(“url”);

    });

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.