diff --git a/Plan/react/dashboard/src/components/cards/common/PlayerRetentionGraphCard.jsx b/Plan/react/dashboard/src/components/cards/common/PlayerRetentionGraphCard.jsx index 0eba802b2..94c853df8 100644 --- a/Plan/react/dashboard/src/components/cards/common/PlayerRetentionGraphCard.jsx +++ b/Plan/react/dashboard/src/components/cards/common/PlayerRetentionGraphCard.jsx @@ -261,13 +261,15 @@ const PlayerRetentionGraphCard = ({identifier}) => { }, tooltip: selectedAxis === 'date' || selectedAxis === 'deltas' ? { enabled: true, + shared: series.length <= 10, valueDecimals: 2, - pointFormat: (selectedGroupBy !== 'none' ? '{series.name} - ' : '') + '{point.y} ' + (selectedYAxis === 'percentage' ? '%' : t('html.label.players')) + '' + pointFormat: (selectedGroupBy !== 'none' ? '{series.name} - ' : '') + '{point.y} ' + (selectedYAxis === 'percentage' ? '%' : t('html.label.players')) + '
' } : { enabled: true, + shared: series.length <= 10, valueDecimals: 2, headerFormat: '{point.x} ' + windowName + '
', - pointFormat: (selectedGroupBy !== 'none' ? '{series.name} - ' : '') + '{point.y} ' + (selectedYAxis === 'percentage' ? '%' : t('html.label.players')) + '' + pointFormat: (selectedGroupBy !== 'none' ? '{series.name} - ' : '') + '{point.y} ' + (selectedYAxis === 'percentage' ? '%' : t('html.label.players')) + '
' }, series: series })