From b1406b8c353dce7f24fcef3eb9c1a8eb44500781 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Wed, 30 Nov 2022 02:55:31 -0500 Subject: [PATCH] [8.6] [Lens] Enables the tooltip on partition charts (#146620) (#146654) # Backport This will backport the following commits from `main` to `8.6`: - [[Lens] Enables the tooltip on partition charts (#146620)](https://github.com/elastic/kibana/pull/146620) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Stratoula Kalafateli --- .../lens/public/visualizations/partition/to_expression.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/lens/public/visualizations/partition/to_expression.ts b/x-pack/plugins/lens/public/visualizations/partition/to_expression.ts index 2aa6651865d0c..998c23d06063d 100644 --- a/x-pack/plugins/lens/public/visualizations/partition/to_expression.ts +++ b/x-pack/plugins/lens/public/visualizations/partition/to_expression.ts @@ -169,7 +169,7 @@ const generateCommonArguments = ( truncateLegend: layer.truncateLegend ?? getDefaultVisualValuesForLayer(state, datasourceLayers).truncateText, palette: generatePaletteAstArguments(paletteService, state.palette), - addTooltip: false, + addTooltip: true, }; };