feat(Pie Chart): threshold for Other (#33348)

This commit is contained in:
Vladislav Korenkov
2025-05-15 04:20:30 +10:00
committed by GitHub
parent 8a8fb49617
commit fa1693dc5f
10 changed files with 387 additions and 20 deletions

View File

@@ -84,6 +84,23 @@ const config: ControlPanelConfig = {
},
},
],
[
{
name: 'threshold_for_other',
config: {
type: 'NumberControl',
label: t('Threshold for Other'),
min: 0,
step: 0.5,
max: 100,
default: 0,
renderTrigger: true,
description: t(
'Values less than this percentage will be grouped into the Other category.',
),
},
},
],
[
{
name: 'roseType',