Add link on graph
This commit is contained in:
parent
92aa01709a
commit
7878974929
1 changed files with 9 additions and 1 deletions
|
@ -22,7 +22,7 @@ $(document).ready(function () {
|
|||
});
|
||||
|
||||
function graphDisplay(ctx, data, title) {
|
||||
new Chart(ctx, {
|
||||
var myChart = new Chart(ctx, {
|
||||
// The type of chart we want to create
|
||||
type: 'bar',
|
||||
|
||||
|
@ -53,6 +53,14 @@ function graphDisplay(ctx, data, title) {
|
|||
stepSize: 500
|
||||
}
|
||||
}]
|
||||
},
|
||||
onClick: function (evt, elem) {
|
||||
var firstPoint = myChart.getElementAtEvent(evt)[0];
|
||||
|
||||
if (firstPoint) {
|
||||
var label = myChart.data.datasets[firstPoint._datasetIndex].label;
|
||||
window.open("https://coa.crapaud-fou.org/channel/"+label);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue