We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e93a0d commit bb0a27eCopy full SHA for bb0a27e
src/modules/axes/Grid.js
@@ -126,9 +126,10 @@ class Grid {
126
const markerSize = w.globals.markers.largestSize
127
128
gl.dom.elGridRectMarker = graphics.drawRect(
129
+ Math.min(-strokeSize / 2 - barWidthLeft - 2, -markerSize),
130
-markerSize,
- -markerSize,
131
- gl.gridWidth + markerSize * 2,
+ gl.gridWidth +
132
+ Math.max(strokeSize + barWidthRight + barWidthLeft + 4, markerSize * 2),
133
gl.gridHeight + markerSize * 2,
134
0,
135
'#fff'
0 commit comments