Hello, is there any method to put link or url when i click on the chart? I use Line Chart ChartJs. Please help
<?php
LineChart::create(array(
    "title"=>"Sale vs Cost",
    "dataSource"=>$time_sale,
    "columns"=>array(
        "month",
        "sale"=>array(
            "label"=>"Sale",
            "type"=>"number",
            "prefix"=>"$"
        ),
        "cost"=>array(
            "label"=>"Cost",
            "type"=>"number",
            "prefix"=>"$"
        ),
    )
));
?>