Skip to content

Commit ffc195b

Browse files
committed
Fix - VueUiHeatmap - Fixed border radius config option not applied on bottom legend
1 parent 29210eb commit ffc195b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/vue-ui-heatmap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ defineExpose({
534534
:y="drawingArea.bottom + heatmapConfig.style.layout.cells.height"
535535
:width="svg.width - drawingArea.left - heatmapConfig.style.layout.padding.right"
536536
:height="heatmapConfig.style.layout.cells.height"
537-
:rx="heatmapConfig.style.layout.cells.height / 2"
537+
:rx="heatmapConfig.style.legend.scaleBorderRadius > heatmapConfig.style.layout.cells.height / 2 ? heatmapConfig.style.layout.cells.height / 2 : heatmapConfig.style.legend.scaleBorderRadius"
538538
fill="url(#colorScaleHorizontal)"
539539
/>
540540
<text

0 commit comments

Comments
 (0)