dosubot[bot] commented on issue #32966: URL: https://github.com/apache/superset/issues/32966#issuecomment-2770524112
<!-- Greeting --> Hey @AxelFurlanF! 👋 I'm here to help you with any bugs, questions, or contributions you have in mind. Let's get to the bottom of this together while we wait for a human maintainer. <!-- Answer --> The issue you're experiencing with creating a dashboard via the API in Apache Superset, where the charts are nonoperational until the dashboard is manually edited and saved through the UI, might be related to missing links or definitions that are not established during the API creation process. One key aspect to check is the `position_json` attribute, which defines the layout and positioning of charts within the dashboard. This JSON object must be correctly structured to ensure that all components, such as charts, are properly linked and displayed. Each component should have a unique key and include necessary metadata like `chartId`, `height`, `width`, and `uuid` <sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx)</sup><sup>[[2]](https://github.com/apache/superset/blob/master/superset/examples/supported_charts_dashboard.py)</sup>. To troubleshoot and potentially resolve this issue, you can: 1. Verify that the `position_json` is correctly formatted and includes all necessary metadata for each chart. 2. Ensure that the `uuid` and `chartId` in the `position_json` match the actual chart identifiers in your Superset instance. 3. Consider manually editing the `position_json` to match the structure of a dashboard created through the UI, as this might reveal any discrepancies. If these steps do not resolve the issue, it may be necessary to further investigate the API's response and compare it with the UI's behavior to identify any missing components or configurations. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/949e6305-71eb-4850-9e62-e7bfb3184333?feedback_type=other)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
