Splunk Search

How to stop timechart drilldown using javascript?

vikas_gopal
Builder

Hi Experts,

I am struggling to stop time chart drilldown using js. Here is the code.

this._chartView = new ChartView({
                managerid: 'details-search-manager',
                'charting.legend.placement': 'none'
                'charting.drilldown': 'none'    
});

'charting.legend.placement': 'none' is working absolutely fine but 'charting.drilldown': 'none' is getting ignored by Splunk. Please help.

0 Karma
1 Solution

vikas_gopal
Builder

The only stupid problem with my code was that I was missing ',' in the 3rd line .Due to this silly mistake Splunk was ignoring 3rd line .

View solution in original post

0 Karma

vikas_gopal
Builder

The only stupid problem with my code was that I was missing ',' in the 3rd line .Due to this silly mistake Splunk was ignoring 3rd line .

0 Karma

bmacias84
Champion

Javascript provides a method called preventDefault(). The method must be tied to an event. Below is an example using table.

splunkTable = new TableView({
    id: "members"+epoch2.getTime(),
    managerid: elementSearch,
    el: $(innerElement)
}).render();
splunkTable.on("click", function(e) {
    e.preventDefault();
});

The sample above is an extract from a working Splunk project.

preventDefault

vikas_gopal
Builder

Thanks for the solution , it works. The only stupid problem with my code was that I was missing ',' in the second line .Due to this silly mistake Splunk was ignoring 3rd line .Thanks again

0 Karma

bmacias84
Champion

Thank for you for voting my answer up, could you accept it?

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...