Remove CSS from specific Chart #32021
Replies: 2 comments 1 reply
-
To remove the black border from a specific chart in Apache Superset, you can use more specific CSS selectors to override the global styles applied to all charts. Unfortunately, Apache Superset does not provide built-in functionality to directly exclude certain charts from global CSS rules. However, you can target specific charts by using unique identifiers or attributes in your CSS. If you have access to the chart's unique #CHART-2Z41H9ulKK {
border: none; /* or any other style to override the global border */
} If the chart does not have a unique identifier available in the HTML, you might need to inspect the chart's HTML structure to find a way to uniquely target it, such as using a combination of classes or data attributes. This approach allows you to apply styles specifically to the chart you want to modify, without affecting the others. 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 it is not a chart, it is Header component from Superset |
Beta Was this translation helpful? Give feedback.
-
Hi, I wanna hide black border from NTA, (though i added it to all the charts via custom CSS) but is there any way so i can remove it from specific Chart?
Beta Was this translation helpful? Give feedback.
All reactions