Skip to content
Snippets Groups Projects
Commit d9877171 authored by syuilo's avatar syuilo
Browse files

fix(client): fix chart vline rendering

parent f4b012b7
No related branches found
No related tags found
No related merge requests found
...@@ -2,9 +2,9 @@ export const chartVLine = (vLineColor: string) => ({ ...@@ -2,9 +2,9 @@ export const chartVLine = (vLineColor: string) => ({
id: 'vLine', id: 'vLine',
beforeDraw(chart, args, options) { beforeDraw(chart, args, options) {
if (chart.tooltip?._active?.length) { if (chart.tooltip?._active?.length) {
const activePoint = chart.tooltip._active[0];
const ctx = chart.ctx; const ctx = chart.ctx;
const x = activePoint.element.x; const xs = chart.tooltip._active.map(a => a.element.x);
const x = xs.reduce((a, b) => a + b, 0) / xs.length;
const topY = chart.scales.y.top; const topY = chart.scales.y.top;
const bottomY = chart.scales.y.bottom; const bottomY = chart.scales.y.bottom;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment