mirror of
https://github.com/apache/superset.git
synced 2026-04-23 18:14:56 +00:00
[Ready] Define ChartProps data structure (#6125)
* rename basicChartInput to chartProps * replace BasicChartInput with ChartProps class * Add transformProps to deck.gl plugins * Add space * delete BasicChartInput * add width and height as part of ChartProps and update transformProps * remove width and height * remove adaptors from deck.gl components * remove deck.gl creataAdaptor
This commit is contained in:
committed by
Chris Williams
parent
4e2341a131
commit
d662e36442
@@ -1,5 +1,5 @@
|
||||
export default function transformProps(basicChartInput) {
|
||||
const { formData, payload } = basicChartInput;
|
||||
export default function transformProps(chartProps) {
|
||||
const { formData, payload } = chartProps;
|
||||
const {
|
||||
groupby,
|
||||
liftvaluePrecision,
|
||||
|
||||
Reference in New Issue
Block a user