Hello, I want to add a link in the chart bar when click the bar to a particular page depending on witch bar was clicked. I don't have a clue how can add hyperlinks in the chart bar
I have this implemented
https://www.koolreport.com/docs/google_charts/bar_chart/
BarChart::create(array(
"title"=>"Total by User",
"options" => array(
"hAxis" => array( "format" => "0" ),
),
"dataSource"=>$this->dataStore("s_chart"),
"columns"=>array(
"account",
"Total"=>array("label"=>"Total Amount","decimals"=>0,"type"=>"number"),
)
));
Thanks