Cannot see custom chart of Hello World #32174
Replies: 5 comments 1 reply
-
I found some similar discussions that might help you resolve the issue with your custom "Hello World" chart not appearing in Apache Superset:
To ensure your custom "Hello World" chart is visible, verify the following steps:
Double-check each step to ensure everything is configured correctly, and make sure all services are running as expected. To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
@dosu ok i am running my superset on http://localhost:8088/ via docker and then i went to superset-frontend folder and ran npm run dev-server and all i see is this ![]() On localhost:8088, i see my superset properly ![]() but i cannot find my viz plugin |
Beta Was this translation helpful? Give feedback.
-
What version of Superset are you running? There was an issue several months ago with the garbled characters like in your screenshot, but it was resolved in one release or another. |
Beta Was this translation helpful? Give feedback.
-
When running Superset locally using Docker Compose for development and using To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
@rusackas @dosubot Superset version 4.1.1 |
Beta Was this translation helpful? Give feedback.
-
Bug description
I need to create a custom chart in apache superset. I followed the below steps. I am using Docker
git clone https://github.com/apache/superset
cd superset
git checkout tags/4.1.1
docker compose -f docker-compose-image-tag.yml up
cd superset-frontend
sudo npm i -g yo
cd packages
cd generator-superset
npm i && npm link
Open new terminal tab, go to the root of macOS
cd /tmp
mkdir superset-plugin-chart-ville
cd superset-plugin-chart-ville
yo @superset-ui/superset
Then I entered the following details
Open new tab and cd to superset-frontend in the superset repo
sudo npm i -S /tmp/superset-plugin-chart-ville
Open the source code of superset in vscode , go to
superset-frontend => src => visualizations => presets => MainPreset.js
import { SupersetPluginChartVille } from 'superset-plugin-chart-ville';
and add the following to the array that's passed to the plugins property: ```
new SupersetPluginChartVille().configure({
key: 'ext-hello-world',
}),
Beta Was this translation helpful? Give feedback.
All reactions