feat(explore): Denormalize form data in echarts, world map and nvd3 bar and line charts (#20313)

* feat(explore): Apply denormalize form data function to echarts and world map

* Denormalize form data in mixed timeseries

* Add dist bar chart
This commit is contained in:
Kamil Gabryjelski
2022-06-09 11:54:09 +02:00
committed by GitHub
parent d04357c47b
commit 354a89950c
18 changed files with 112 additions and 4 deletions

View File

@@ -320,6 +320,10 @@ const controlPanel: ControlPanelConfig = {
],
},
],
denormalizeFormData: formData => ({
...formData,
metric: formData.standardizedFormData.standardizedState.metrics[0],
}),
};
export default controlPanel;