Ayush Kumar
08/14/2025, 9:09 AM"@gooddata/sdk-backend-spi": "^10.24.0",
"@gooddata/sdk-backend-tiger": "^10.24.0",
"@gooddata/sdk-model": "^10.24.0",
"@gooddata/sdk-ui": "^10.24.0",
"@gooddata/sdk-ui-all": "^10.24.0",
"@gooddata/sdk-ui-ext": "^10.24.0",
My code implementation, I am using measures and attributes from the drill context of an insightview. I have also tried catalog approach but the results are same
<ColumnChart
backend={backend}
workspace={localStorage.getItem('workspace_id') || ''}
measures={drillEvent?.dataView?.definition?.measures}
// filters={drillFilters}
viewBy={[...drillEvent?.dataView?.definition?.attributes]}
/>
Mauricio Cabezas
08/14/2025, 2:14 PM<ColumnChart
backend={backend}
workspace=<workspace_id_string>
measures={[Md.fact_id]}
viewBy={Md.attribute_id}
/>
Or similar.
Are you synchronising the metadata?Mauricio Cabezas
08/14/2025, 2:32 PM