diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx index b231b0ae6ea6d..518272afdff2e 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx +++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx @@ -122,7 +122,10 @@ class CustomHistogram extends React.PureComponent {
{t('percentile (exclusive)')} - {`{((datum.cumulativeDensity - datum.density) * 100).toPrecision(4)}th`} + {`${( + (datum.cumulativeDensity - datum.density) * + 100 + ).toPrecision(4)}th`}
)}