diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js index 344388fffd..39b42525af 100644 --- a/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js +++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/src/utils.js @@ -203,7 +203,7 @@ export function generateAreaChartTooltipContent( series.key === 'TOTAL' ? '' : '◼' }` + `${key}` + - `${valueFormatter(series.value)}` + + `${valueFormatter(series?.point?.y)}` + `${((100 * series.value) / total).toFixed(2)}%` + ''; });