diff --git a/public/app/features/explore/Graph/GraphContainer.tsx b/public/app/features/explore/Graph/GraphContainer.tsx
index 52f42c51ab4..bc8cc45ddbe 100644
--- a/public/app/features/explore/Graph/GraphContainer.tsx
+++ b/public/app/features/explore/Graph/GraphContainer.tsx
@@ -80,13 +80,17 @@ export const GraphContainer = ({
titleItems={[
!showAllSeries && MAX_NUMBER_OF_TIME_SERIES < data.length && (
-
-
+
+
+ Showing only {MAX_NUMBER_OF_TIME_SERIES} series
+
+
+
-
-
),
].filter(Boolean)}
@@ -120,14 +124,15 @@ export const GraphContainer = ({
const getStyles = (theme: GrafanaTheme2) => ({
timeSeriesDisclaimer: css({
label: 'time-series-disclaimer',
- textSlign: 'center',
- fontSize: theme.typography.bodySmall.fontSize,
display: 'flex',
alignItems: 'center',
gap: theme.spacing(1),
}),
- disclaimerIcon: css({
- label: 'disclaimer-icon',
+ warningMessage: css({
+ display: 'flex',
+ alignItems: 'center',
+ gap: theme.spacing(0.5),
color: theme.colors.warning.main,
+ fontSize: theme.typography.bodySmall.fontSize,
}),
});