Skip to content

Commit 909d40f

Browse files
committed
RI-2063 - Fix x axis label height which overlaps with chart legends.
RI-2632 - Fix Additional unnecessary scroll bar that appears
1 parent f117aa7 commit 909d40f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

redisinsight/ui/src/packages/redistimeseries-app/src/components/Chart/Chart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default function Chart(props: ChartProps) {
120120
xanchor: 'center',
121121
yanchor: 'top',
122122
x: 0.5,
123-
y: -0.3,
123+
y: -0.5,
124124
orientation: 'h',
125125
}
126126
return {

redisinsight/ui/src/packages/redistimeseries-app/src/styles/styles.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ div.plotly-notifier {
298298

299299
body {
300300
color: var(--body-color);
301+
overflow: hidden;
301302
}
302303

303304
* {

0 commit comments

Comments
 (0)