mirror of
https://github.com/apache/superset.git
synced 2026-04-23 10:04:45 +00:00
feat(timeseries-chart): add percentage threshold input control (#17758)
* feat(timeseries-chart): add percentage threshold control for stack series labels * feat: move threshold vlues to an array * add tests for showValue, onlyTotal, and percentThreshold * feat: add another test * revert ChartProps typesetting, fix misnamed variable on form data type, and other minor changes * fix percentage threshold push equation * fix percentage threshold push equation in tests * change default on control to match form * attempt fix form defaults import Co-authored-by: Corbin Robb <corbin@Corbins-MacBook-Pro.local>
This commit is contained in:
@@ -111,6 +111,7 @@ export default function transformProps(
|
||||
groupby,
|
||||
showValue,
|
||||
onlyTotal,
|
||||
percentageThreshold,
|
||||
xAxisTitle,
|
||||
yAxisTitle,
|
||||
xAxisTitleMargin,
|
||||
@@ -130,6 +131,7 @@ export default function transformProps(
|
||||
|
||||
const totalStackedValues: number[] = [];
|
||||
const showValueIndexes: number[] = [];
|
||||
const thresholdValues: number[] = [];
|
||||
|
||||
rebasedData.forEach(data => {
|
||||
const values = Object.keys(data).reduce((prev, curr) => {
|
||||
@@ -140,6 +142,7 @@ export default function transformProps(
|
||||
return prev + (value as number);
|
||||
}, 0);
|
||||
totalStackedValues.push(values);
|
||||
thresholdValues.push(((percentageThreshold || 0) / 100) * values);
|
||||
});
|
||||
|
||||
if (stack) {
|
||||
@@ -168,6 +171,7 @@ export default function transformProps(
|
||||
onlyTotal,
|
||||
totalStackedValues,
|
||||
showValueIndexes,
|
||||
thresholdValues,
|
||||
richTooltip,
|
||||
});
|
||||
if (transformedSeries) series.push(transformedSeries);
|
||||
|
||||
Reference in New Issue
Block a user