CSS on Word Cloud Chart #31940
Replies: 1 comment 2 replies
-
I couldn't find specific information about CSS for the Word Cloud chart in the Superset codebase. However, you can try centering the Word Cloud by adjusting the CSS properties of the container element. You might want to use CSS flexbox or grid to center the chart. Here's a basic example using flexbox: .container {
display: flex;
justify-content: center;
align-items: center;
height: 100%; /* Adjust as needed */
} Apply this CSS to the parent container of your Word Cloud chart. This should help in centering the chart within its container. If the issue persists, ensure that there are no conflicting styles affecting the alignment. 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.
-
I am trying to apply css on Word Cloud but its not getting center aligned.
Beta Was this translation helpful? Give feedback.
All reactions