From 64d9dfb2b29c33e5d4b66bffa3cb3c903513cd30 Mon Sep 17 00:00:00 2001 From: Sulka Haro Date: Sun, 20 Oct 2019 16:15:50 +0300 Subject: [PATCH] Render ticks on top of everything --- lib/client/chart.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/client/chart.js b/lib/client/chart.js index c48bfdf80f6..9a604e8f959 100644 --- a/lib/client/chart.js +++ b/lib/client/chart.js @@ -164,6 +164,9 @@ function init (client, d3, $) { .tickFormat(d3.format('d')) .tickValues(tickValues); + d3.select('tick') + .style('z-index', '10000'); + // setup a brush chart.brush = d3.brushX() .on('start', brushStarted)