Want to remove i button in chart with Help of CSS

Hey, I want to remove i button in the chart.
Please help me with CSS.

Gotta use @Lucas_Pires’ trick to target the specific element as I did not find a way to do so “normally” as the chart seems to not have a stable class name…

<pre><span><style>
div[id*='screenScrollView'] > div > :nth-of-type(1) svg {
display: none;
}

Change (1) to whatever the order number of the chart is on your screen.

1 Like