We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e554a commit 2337285Copy full SHA for 2337285
frontend/src/pages/MCADashboard/Metrics/McadMetricGraph.tsx
@@ -232,7 +232,7 @@ const Graph: React.FC<GraphProps> = ({
232
ariaTitle={query.name}
233
containerComponent={graphContainer}
234
height={200}
235
- minDomain={{ y: 0 }}
+ minDomain={{ y: -1 }}
236
name={query.name}
237
width={width}
238
themeColor={ChartThemeColor.multiUnordered}
frontend/src/pages/MCADashboard/Metrics/tooltip.tsx
@@ -5,7 +5,7 @@ import { ChartVoronoiContainer } from '@patternfly/react-charts';
5
import { formatUnitString } from './metrics-utils';
6
import { Unit } from './types';
7
8
-const TOOLTIP_MAX_ENTRIES = 15;
+const TOOLTIP_MAX_ENTRIES = 1000;
9
const TOOLTIP_MAX_WIDTH = 400;
10
const TOOLTIP_MAX_HEIGHT = 400;
11
const TOOLTIP_MAX_LEFT_JUT_OUT = 85;
0 commit comments