Dashboards & Visualizations

How do I set the legend placement for a chart in an HTML dashboard?

unclethan
Path Finder

According to http://docs.splunk.com/Documentation/WebFramework, "Charts support the same properties supported by the Splunk JSChart library", however I am unable to find the correct incantation to set 'charting.legend.placement' to 'bottom'.

Does anyone have an example of how to set this up?

1 Solution

Simon_Fishel
Splunk Employee
Splunk Employee

I think you can just pass it as an option to the chart constructor:

var ChartView = require("splunkjs/mvc/chartview");
new ChartView({
    id: "example-chart",
    managerid: "example-search",
    type: "line",
    el: $("#mychart"),
    "charting.legend.placement": "bottom"
}).render();

Or set it after the chart has been created:

splunkjs.mvc.Components.getInstance("example-chart").settings.set({
    "charting.legend.placement": "bottom",
});

View solution in original post

Simon_Fishel
Splunk Employee
Splunk Employee

I think you can just pass it as an option to the chart constructor:

var ChartView = require("splunkjs/mvc/chartview");
new ChartView({
    id: "example-chart",
    managerid: "example-search",
    type: "line",
    el: $("#mychart"),
    "charting.legend.placement": "bottom"
}).render();

Or set it after the chart has been created:

splunkjs.mvc.Components.getInstance("example-chart").settings.set({
    "charting.legend.placement": "bottom",
});

bhawkins1
Communicator

Here you can find the possible values for charting.legend.*: http://docs.splunk.com/Documentation/Splunk/5.0/Viz/CustomChartingConfig-ChartLegend#Legend

0 Karma

unclethan
Path Finder

This worked - Thanks.
I had been hoping to have a django-bindings option, so that all the options were in one place.

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...