This sample shows how to set the chart data point hyperlinks.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Hyperlinks Example - JavaScript Chart by dvxCharts</title>
<link rel="stylesheet" type="text/css" href="../../css/dvxCharts.chart.min.css" />
<link rel="stylesheet" type="text/css" href="../../themes/base/styles.css" />
<script src="../../js/dvxCharts.chart.min.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
.example-container {
width: 100%;
max-width: 500px;
height: 300px;
}
</style>
<style>
.mySeries .dvx-chart-series-item {
cursor: pointer;
}
</style>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: 'Hyperlinks',
animation: {
duration: 1
},
series: [
{
title: 'Measure',
type: 'column',
class: 'mySeries',
data: [['Google', 70], ['Yahoo', 40], ['Bing', 85]],
hyperlinks: ['www.google.com', 'www.yahoo.com', 'www.bing.com']
}
]
});
chart.addEventListener('dataPointMouseDown', function (event, data) {
var link = data.series.hyperlinks[data.index];
window.open('http://' + link);
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>