Hello Niketn, In my case, I am using timechart where i need to drilldown IP and Port to display Values on the new dashbaord as below sample. " timechart span=5m avg(In) as In avg(Out) as Out latest(host) as IP latest(snmp_index) as Port" I tried to hide Port and IP using the below CSS it does hide both IP and Host on from the graph but still values appears when you move mouse curser, values still there. it does not fully removed. Any suggestion please. <html depends="$alwaysHideCSSStyle$"> <style> g.highcharts-legend-item:nth-child(3) { visibility: hidden !important; } g.highcharts-legend-item:nth-child(4) { visibility: hidden !important; } g.highcharts-series-3 { visibility: hidden !important; } </style> </html>
... View more