Last active
December 16, 2021 11:06
-
-
Save hacksdump/92315ae80cb0671c4c8bc896c72dd188 to your computer and use it in GitHub Desktop.
Chart.js line graph with moving vertical line using annotations plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
* { | |
position: relative; | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
</style> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js"></script> | |
<script | |
src="https://cdnjs.cloudflare.com/ajax/libs/chartjs-plugin-annotation/0.5.7/chartjs-plugin-annotation.min.js"></script> | |
</head> | |
<body> | |
<canvas id="myChart"></canvas> | |
<script type="text/javascript"> | |
var canvas = document.getElementById('myChart'); | |
var height = canvas.height; | |
var ctx = canvas.getContext('2d'); | |
gradient = ctx.createLinearGradient(0, 0, 0, height); | |
gradient.addColorStop(0, 'rgb(255, 99, 132)'); | |
gradient.addColorStop(1, 'rgba(255, 255, 255, 0)'); | |
var chart = new Chart(ctx, { | |
// The type of chart we want to create | |
type: 'line', | |
// The data for our dataset | |
data: { | |
labels: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], | |
datasets: [{ | |
label: 'My First dataset', | |
backgroundColor: gradient, | |
borderColor: 'rgb(255, 99, 132)', | |
data: [12, 34, 54, 23, 12, 123, 45, 45, 46, 34, 45, 34, 34, 46, 23, 45, 56, 34, 34, 23, 45, 56, 34, 23, 45, 56, 34, 45, 12, 34], | |
pointRadius: null, | |
borderWidth: 1.5, | |
}] | |
}, | |
// Configuration options go here | |
options: { | |
animation: { | |
duration: 200, | |
}, | |
annotation: { | |
annotations: [ | |
{ | |
type: "line", | |
mode: "vertical", | |
scaleID: "x-axis-0", | |
value: null, | |
borderColor: "rgb(150, 150, 150)", | |
borderDash: [2, 2], | |
label: { | |
content: null, | |
enabled: true, | |
position: "top", | |
xAdjust: 0, | |
} | |
} | |
] | |
}, | |
scales: { | |
xAxes: [{ | |
gridLines: { | |
drawOnChartArea: false | |
} | |
}], | |
yAxes: [{ | |
gridLines: { | |
drawOnChartArea: false | |
} | |
}] | |
}, | |
elements: { | |
line: { | |
tension: 0 | |
} | |
}, | |
responsive: true, | |
tooltips: { | |
mode: 'index', | |
intersect: false, | |
callbacks: { | |
label: function (tooltipItems, data) { | |
updateLinePosition(tooltipItems.xLabel, tooltipItems.yLabel) | |
updateLabelXAdjust(tooltipItems.xLabel); | |
return null; | |
} | |
}, | |
custom: function (tooltipModel) { | |
tooltipModel.opacity = 0; | |
} | |
}, | |
legend: { | |
display: false, | |
}, | |
} | |
}); | |
function getDataLength() { | |
const length = chart.data.datasets[0].data.length | |
return length; | |
} | |
function updateLinePosition(newPosition, newData) { | |
chart.options.annotation.annotations[0].value = newPosition; | |
chart.options.annotation.annotations[0].label.content = newData; | |
updateHighlightedPoint(newPosition); | |
chart.update(); | |
} | |
function updateHighlightedPoint(xPosition) { | |
const length = getDataLength(); | |
chart.data.datasets[0].pointRadius = [] | |
for (let i = 0; i < length; i++) { | |
if (i == xPosition) { | |
chart.data.datasets[0].pointRadius[i] = 3; | |
} | |
else { | |
chart.data.datasets[0].pointRadius[i] = 0; | |
} | |
} | |
chart.update(); | |
} | |
function updateLabelXAdjust(xPosition) { | |
const length = getDataLength(); | |
const offset = 3; | |
const adjustFactor = 5; | |
if (offset <= xPosition && xPosition <= (length - 1) - offset) { | |
chart.options.annotation.annotations[0].label.xAdjust = 0; | |
} | |
else { | |
if (xPosition <= offset) { | |
chart.options.annotation.annotations[0].label.xAdjust = -adjustFactor * (offset - xPosition); | |
} | |
else { | |
chart.options.annotation.annotations[0].label.xAdjust = adjustFactor * (offset - (length - 1) + xPosition); | |
} | |
} | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment