This sample demonstrates how to use the "tooltipFormat" event to create advanced
tooltips.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Tooltips 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>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: {
text: 'Tooltips'
},
animation: {
duration: 1
},
series: [
{
type: 'bubble',
title: 'Series 1',
data: [[1, 15, 8], [2, 18, 4], [3, 15, 8], [4, 16, 13], [5, 14, 11]]
},
{
type: 'bubble',
title: 'Series 2',
data: [[1, 9, 15], [2, 8, 24], [3, 12, 10], [4, 9, 14], [5, 7, 12]],
markers: {
type: 'rectangle'
}
}
]
});
chart.addEventListener('tooltipFormat', function (e, data) {
e.result = "<b>" + data.series.title + "</b><br />" +
"X = " + data.x + "<br />" +
"Y = " + data.y + "<br />" +
"Size = " + data.size;
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>