<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to customize the width of panels in an HTML dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111034#M6280</link>
    <description>&lt;P&gt;I know the question specifically states a html dashboard, but I've used the following javascript detailed in this  answer with Simple XML using Splunk 6.1.1 - could it also be applied to a HTML dashboard? &lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/149563/simple-xml-display-2-panels-in-a-row-with-different-widths"&gt;http://answers.splunk.com/answers/149563/simple-xml-display-2-panels-in-a-row-with-different-widths&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Dave&lt;/P&gt;</description>
    <pubDate>Fri, 12 Sep 2014 04:19:19 GMT</pubDate>
    <dc:creator>davebrooking</dc:creator>
    <dc:date>2014-09-12T04:19:19Z</dc:date>
    <item>
      <title>How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111025#M6271</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;I have a sample dashboard using HTML.&lt;/P&gt;

&lt;P&gt;There's 3 panels in one row. And I would like to assign the different width to these panels..... say 20% for first panels, 30% for second panels, 50% for third panels.&lt;/P&gt;

&lt;P&gt;After upload the HTML to Splunk and run the dashboard. The system will modify the width to 33.33% for these 3 panels like the following coding.....&lt;/P&gt;

&lt;P&gt;So I would like to know how we can customize the width in dashboard.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;div class="dashboard-row dashboard-row1"&amp;gt;
&amp;lt;div class="dashboard-cell" style="width: 33.3333%;"&amp;gt;
&amp;lt;div class="dashboard-panel clearfix" style="min-height: 315px;"&amp;gt;
&amp;lt;div class="panel-element-row"&amp;gt;
&amp;lt;div id="element1" class="dashboard-element map" style="width: 100%;"&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="dashboard-cell" style="width: 33.3333%;"&amp;gt;
&amp;lt;div class="dashboard-panel clearfix" style="min-height: 315px;"&amp;gt;
&amp;lt;div class="panel-element-row"&amp;gt;
&amp;lt;div id="element2" class="dashboard-element chart splunk-view" style="width: 100%"&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="dashboard-cell last-visible" style="width: 33.3333%;"&amp;gt;
&amp;lt;div class="dashboard-panel clearfix" style="min-height: 315px;"&amp;gt;
&amp;lt;div class="panel-element-row"&amp;gt;
&amp;lt;div id="element3" class="dashboard-element chart" style="width: 100%"&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Sep 2014 09:21:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111025#M6271</guid>
      <dc:creator>chrismok</dc:creator>
      <dc:date>2014-09-04T09:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111026#M6272</link>
      <description>&lt;P&gt;Just change the line:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&amp;lt;div class="dashboard-cell" style="width: 33.3333%;"&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;and define the "width: 20%;", it'll look like that:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&amp;lt;div class="dashboard-cell" style="width: 20%;"&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I did that using the HTML Editor inside Splunk and works for me.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2014 23:46:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111026#M6272</guid>
      <dc:creator>musskopf</dc:creator>
      <dc:date>2014-09-04T23:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111027#M6273</link>
      <description>&lt;P&gt;Still not work, I cant create the dashboard and paste the following code to your splunk server. And you will see that the width will become 33.33333% again....&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge" /&amp;gt;
    &amp;lt;title&amp;gt;Testing HTML | Splunk&amp;lt;/title&amp;gt;
    &amp;lt;link rel="shortcut icon" href="{{SPLUNKWEB_URL_PREFIX}}/static/img/favicon.ico" /&amp;gt;
    &amp;lt;link rel="stylesheet" type="text/css" href="{{SPLUNKWEB_URL_PREFIX}}/static/css/build/bootstrap.min.css" /&amp;gt;
    &amp;lt;link rel="stylesheet" type="text/css" media="all" href="{{SPLUNKWEB_URL_PREFIX}}/static/css/build/pages/dashboard-simple-bootstrap.min.css" /&amp;gt;
    &amp;lt;link rel="stylesheet" type="text/css" media="all" href="{{SPLUNKWEB_URL_PREFIX}}/static/app/search/dashboard.css" /&amp;gt;
    &amp;lt;!--[if IE 7]&amp;gt;&amp;lt;link rel="stylesheet" href="{{SPLUNKWEB_URL_PREFIX}}/static/css/sprites-ie7.css" /&amp;gt;&amp;lt;![endif]--&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body class="simplexml preload locale-en"&amp;gt;

&amp;lt;!-- 
BEGIN LAYOUT
This section contains the layout for the dashboard. Splunk uses proprietary
styles in &amp;lt;div&amp;gt; tags, similar to Bootstrap's grid system. 
--&amp;gt;
&amp;lt;a class="navSkip" href="#navSkip" tabindex="1"&amp;gt;Screen reader users, click here to skip the navigation bar&amp;lt;/a&amp;gt;
&amp;lt;div class="header"&amp;gt;
    &amp;lt;div id="placeholder-splunk-bar"&amp;gt;
        &amp;lt;a href="{{SPLUNKWEB_URL_PREFIX}}/app/launcher/home" class="brand" title="splunk &amp;amp;gt; listen to your data"&amp;gt;splunk&amp;lt;strong&amp;gt;&amp;amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="placeholder-app-bar"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;a id="navSkip"&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;div class="dashboard-body container-fluid main-section-body" data-role="main"&amp;gt;
    &amp;lt;div class="dashboard-header clearfix"&amp;gt;
        &amp;lt;h2&amp;gt;Testing HTML&amp;lt;/h2&amp;gt;
        &amp;lt;p class="description"&amp;gt;&amp;lt;/p&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div class="dashboard-row dashboard-row1"&amp;gt;
        &amp;lt;div class="dashboard-cell" style="width: 20%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;                
                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div class="dashboard-element chart" id="element1" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body"&amp;gt;&amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="dashboard-cell" style="width: 30%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;                
                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div class="dashboard-element chart" id="element2" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body"&amp;gt;&amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="dashboard-cell" style="width: 50%;"&amp;gt;
            &amp;lt;div class="dashboard-panel clearfix"&amp;gt;                
                &amp;lt;div class="panel-element-row"&amp;gt;
                    &amp;lt;div class="dashboard-element chart" id="element3" style="width: 100%"&amp;gt;
                        &amp;lt;div class="panel-body"&amp;gt;&amp;lt;/div&amp;gt;
                    &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="footer"&amp;gt;&amp;lt;/div&amp;gt;

&amp;lt;!-- 
END LAYOUT
--&amp;gt;

&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/config?autoload=1"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/static/js/i18n.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/i18ncatalog?autoload=1"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="{{SPLUNKWEB_URL_PREFIX}}/static/js/build/simplexml.min/config.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script type="text/javascript"&amp;gt;
require.config({
    baseUrl: "{{SPLUNKWEB_URL_PREFIX}}/static/js",
    waitSeconds: 0 // Disable require.js load timeout
});

//
// LIBRARY REQUIREMENTS
//
// In the require function, we include the necessary libraries and modules for
// the HTML dashboard. Then, we pass variable names for these libraries and
// modules as function parameters, in order.
// 
// When you add libraries or modules, remember to retain this mapping order
// between the library or module and its function parameter. You can do this by
// adding to the end of these lists, as shown in the commented examples below.

require([
    "splunkjs/mvc",
    "splunkjs/mvc/utils",
    "splunkjs/mvc/tokenutils",
    "underscore",
    "jquery",
    "splunkjs/mvc/simplexml",
    "splunkjs/mvc/headerview",
    "splunkjs/mvc/footerview",
    "splunkjs/mvc/simplexml/dashboardview",
    "splunkjs/mvc/simplexml/element/chart",
    "splunkjs/mvc/simplexml/element/event",
    "splunkjs/mvc/simplexml/element/html",
    "splunkjs/mvc/simplexml/element/list",
    "splunkjs/mvc/simplexml/element/map",
    "splunkjs/mvc/simplexml/element/single",
    "splunkjs/mvc/simplexml/element/table",
    "splunkjs/mvc/simpleform/formutils",
    "splunkjs/mvc/simpleform/input/dropdown",
    "splunkjs/mvc/simpleform/input/radiogroup",
    "splunkjs/mvc/simpleform/input/multiselect",
    "splunkjs/mvc/simpleform/input/checkboxgroup",
    "splunkjs/mvc/simpleform/input/text",
    "splunkjs/mvc/simpleform/input/timerange",
    "splunkjs/mvc/simpleform/input/submit",
    "splunkjs/mvc/searchmanager",
    "splunkjs/mvc/savedsearchmanager",
    "splunkjs/mvc/postprocessmanager",
    "splunkjs/mvc/simplexml/urltokenmodel"
    // Add comma-separated libraries and modules manually here, for example:
    // ..."splunkjs/mvc/simplexml/urltokenmodel",
    // "splunkjs/mvc/checkboxview"
    ],
    function(
        mvc,
        utils,
        TokenUtils,
        _,
        $,
        DashboardController,
        HeaderView,
        FooterView,
        Dashboard,
        ChartElement,
        EventElement,
        HtmlElement,
        ListElement,
        MapElement,
        SingleElement,
        TableElement,
        FormUtils,
        DropdownInput,
        RadioGroupInput,
        MultiSelectInput,
        CheckboxGroupInput,
        TextInput,
        TimeRangeInput,
        SubmitButton,
        SearchManager,
        SavedSearchManager,
        PostProcessManager,
        UrlTokenModel

        // Add comma-separated parameter names here, for example: 
        // ...UrlTokenModel, 
        // CheckboxView
        ) {



        var pageLoading = true;


        // 
        // TOKENS
        //

        // Create token namespaces
        var urlTokenModel = new UrlTokenModel();
        mvc.Components.registerInstance('url', urlTokenModel);
        var defaultTokenModel = mvc.Components.getInstance('default', {create: true});
        var submittedTokenModel = mvc.Components.getInstance('submitted', {create: true});

        urlTokenModel.on('url:navigate', function() {
            defaultTokenModel.set(urlTokenModel.toJSON());
            if (!_.isEmpty(urlTokenModel.toJSON()) &amp;amp;&amp;amp; !_.all(urlTokenModel.toJSON(), _.isUndefined)) {
                submitTokens();
            } else {
                submittedTokenModel.clear();
            }
        });

        // Initialize tokens
        defaultTokenModel.set(urlTokenModel.toJSON());

        function submitTokens() {
            // Copy the contents of the defaultTokenModel to the submittedTokenModel and urlTokenModel
            FormUtils.submitForm({ replaceState: pageLoading });
        }

        function setToken(name, value) {
            defaultTokenModel.set(name, value);
            submittedTokenModel.set(name, value);
        }

        function unsetToken(name) {
            defaultTokenModel.unset(name);
            submittedTokenModel.unset(name);
        }

        //
        // SEARCH MANAGERS
        //

        var search1 = new SearchManager({
            "id": "search1",
            "earliest_time": "",
            "cancelOnUnload": true,
            "latest_time": "",
            "status_buckets": 0,
            "search": "sourcetype=* |stats count by host| fields - host",
            "app": utils.getCurrentApp(),
            "auto_cancel": 90,
            "preview": true,
            "runWhenTimeIsUndefined": false
        }, {tokens: true, tokenNamespace: "submitted"});

        var search2 = new SearchManager({
            "id": "search2",
            "earliest_time": "",
            "cancelOnUnload": true,
            "latest_time": "",
            "status_buckets": 0,
            "search": "sourcetype=* |stats count by host| fields - host",
            "app": utils.getCurrentApp(),
            "auto_cancel": 90,
            "preview": true,
            "runWhenTimeIsUndefined": false
        }, {tokens: true, tokenNamespace: "submitted"});

        var search3 = new SearchManager({
            "id": "search3",
            "earliest_time": "",
            "cancelOnUnload": true,
            "latest_time": "",
            "status_buckets": 0,
            "search": "sourcetype=* |stats count by host| fields - host",
            "app": utils.getCurrentApp(),
            "auto_cancel": 90,
            "preview": true,
            "runWhenTimeIsUndefined": false
        }, {tokens: true, tokenNamespace: "submitted"});



        //
        // SPLUNK HEADER AND FOOTER
        //

        new HeaderView({
            id: 'header',
            section: 'dashboards',
            el: $('.header'),
            acceleratedAppNav: true,
            useSessionStorageCache: true
        }, {tokens: true}).render();

        new FooterView({
            id: 'footer',
            el: $('.footer')
        }, {tokens: true}).render();


        //
        // DASHBOARD EDITOR
        //

        new Dashboard({
            id: 'dashboard',
            el: $('.dashboard-body')
        }, {tokens: true}).render();


        //
        // VIEWS: VISUALIZATION ELEMENTS
        //

        var element1 = new ChartElement({
            "id": "element1",
            "charting.axisX.scale": "linear",
            "charting.chart.style": "shiny",
            "charting.legend.placement": "right",
            "charting.axisTitleY2.visibility": "visible",
            "charting.axisLabelsX.majorLabelStyle.overflowMode": "ellipsisNone",
            "charting.drilldown": "all",
            "charting.chart.stackMode": "default",
            "charting.axisTitleX.visibility": "visible",
            "charting.chart.nullValueMode": "gaps",
            "charting.axisTitleY.visibility": "visible",
            "charting.chart.sliceCollapsingThreshold": "0.01",
            "charting.layout.splitSeries": "0",
            "charting.axisY.scale": "linear",
            "charting.legend.labelStyle.overflowMode": "ellipsisMiddle",
            "resizable": true,
            "charting.axisY2.scale": "inherit",
            "charting.axisY2.enabled": "0",
            "charting.axisLabelsX.majorLabelStyle.rotation": "0",
            "charting.chart": "fillerGauge",
            "managerid": "search1",
            "el": $('#element1')
        }, {tokens: true}).render();


        var element2 = new ChartElement({
            "id": "element2",
            "charting.axisX.scale": "linear",
            "charting.chart.style": "shiny",
            "charting.legend.placement": "right",
            "charting.axisTitleY2.visibility": "visible",
            "charting.axisLabelsX.majorLabelStyle.overflowMode": "ellipsisNone",
            "charting.drilldown": "all",
            "charting.chart.stackMode": "default",
            "charting.axisTitleX.visibility": "visible",
            "charting.chart.nullValueMode": "gaps",
            "charting.axisTitleY.visibility": "visible",
            "charting.chart.sliceCollapsingThreshold": "0.01",
            "charting.layout.splitSeries": "0",
            "charting.axisY.scale": "linear",
            "charting.legend.labelStyle.overflowMode": "ellipsisMiddle",
            "resizable": true,
            "charting.axisY2.scale": "inherit",
            "charting.axisY2.enabled": "0",
            "charting.axisLabelsX.majorLabelStyle.rotation": "0",
            "charting.chart": "fillerGauge",
            "managerid": "search2",
            "el": $('#element2')
        }, {tokens: true}).render();


        var element3 = new ChartElement({
            "id": "element3",
            "charting.axisX.scale": "linear",
            "charting.chart.style": "shiny",
            "charting.legend.placement": "right",
            "charting.axisTitleY2.visibility": "visible",
            "charting.axisLabelsX.majorLabelStyle.overflowMode": "ellipsisNone",
            "charting.drilldown": "all",
            "charting.chart.stackMode": "default",
            "charting.axisTitleX.visibility": "visible",
            "charting.chart.nullValueMode": "gaps",
            "charting.axisTitleY.visibility": "visible",
            "charting.chart.sliceCollapsingThreshold": "0.01",
            "charting.layout.splitSeries": "0",
            "charting.axisY.scale": "linear",
            "charting.legend.labelStyle.overflowMode": "ellipsisMiddle",
            "resizable": true,
            "charting.axisY2.scale": "inherit",
            "charting.axisY2.enabled": "0",
            "charting.axisLabelsX.majorLabelStyle.rotation": "0",
            "charting.chart": "fillerGauge",
            "managerid": "search3",
            "el": $('#element3')
        }, {tokens: true}).render();



        // Initialize time tokens to default
        if (!defaultTokenModel.has('earliest') &amp;amp;&amp;amp; !defaultTokenModel.has('latest')) {
            defaultTokenModel.set({ earliest: '0', latest: '' });
        }

        submitTokens();


        //
        // DASHBOARD READY
        //

        DashboardController.ready();
        pageLoading = false;

    }
);
&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Sep 2014 01:57:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111027#M6273</guid>
      <dc:creator>chrismok</dc:creator>
      <dc:date>2014-09-05T01:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111028#M6274</link>
      <description>&lt;P&gt;Hi Chrismok,&lt;/P&gt;

&lt;P&gt;What version of Splunk are you running?!&lt;/P&gt;

&lt;P&gt;Asking that because it was working fine over here on 6.0.2 but I just upgrade the environment couple of weeks ago and now it's presenting the same error as you're describing. Maybe that's a bug introduced by the new feature of resizing SimpleXML width &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Now we're two looking for the same solution&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2014 02:28:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111028#M6274</guid>
      <dc:creator>musskopf</dc:creator>
      <dc:date>2014-09-05T02:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111029#M6275</link>
      <description>&lt;P&gt;I am using 6.1 version.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2014 02:31:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111029#M6275</guid>
      <dc:creator>chrismok</dc:creator>
      <dc:date>2014-09-05T02:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111030#M6276</link>
      <description>&lt;P&gt;Yes, I just opened my old VM running 6.0x and works there. I'll raise a support ticket to report this bug! If you have access to the support, pls do the same! Cheers&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2014 02:58:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111030#M6276</guid>
      <dc:creator>musskopf</dc:creator>
      <dc:date>2014-09-05T02:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111031#M6277</link>
      <description>&lt;P&gt;OMG.......&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2014 16:21:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111031#M6277</guid>
      <dc:creator>chrismok</dc:creator>
      <dc:date>2014-09-11T16:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111032#M6278</link>
      <description>&lt;P&gt;As a workaround try using min-width instead of width as an attribute or style=" width: 70% !important". I have tried this on chrome.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2014 20:13:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111032#M6278</guid>
      <dc:creator>josesolis</dc:creator>
      <dc:date>2014-09-11T20:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111033#M6279</link>
      <description>&lt;P&gt;Here the feedback from Splunk Support:&lt;BR /&gt;
= = = &lt;BR /&gt;
Hi xxxx,&lt;/P&gt;

&lt;P&gt;It looks like a regression the fix will be shipped in the ver 6.1.5.&lt;BR /&gt;
As a workaround for that - as updated in the splunk answers - try the below;&lt;/P&gt;

&lt;P&gt;style=" width: 70% !important".&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/154120/how-to-customize-the-width-of-panels-in-an-html-dashboard"&gt;http://answers.splunk.com/answers/154120/how-to-customize-the-width-of-panels-in-an-html-dashboard&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Hope it helps and feel free to ask should you need more assistance on this.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;BR /&gt;
Sung | Splunk Support&lt;BR /&gt;
= = =&lt;/P&gt;</description>
      <pubDate>Fri, 12 Sep 2014 01:15:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111033#M6279</guid>
      <dc:creator>musskopf</dc:creator>
      <dc:date>2014-09-12T01:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111034#M6280</link>
      <description>&lt;P&gt;I know the question specifically states a html dashboard, but I've used the following javascript detailed in this  answer with Simple XML using Splunk 6.1.1 - could it also be applied to a HTML dashboard? &lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/149563/simple-xml-display-2-panels-in-a-row-with-different-widths"&gt;http://answers.splunk.com/answers/149563/simple-xml-display-2-panels-in-a-row-with-different-widths&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Fri, 12 Sep 2014 04:19:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111034#M6280</guid>
      <dc:creator>davebrooking</dc:creator>
      <dc:date>2014-09-12T04:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the width of panels in an HTML dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111035#M6281</link>
      <description>&lt;P&gt;Tried. This method only worked in Chrome, but not worked in Firefox&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2014 03:22:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-customize-the-width-of-panels-in-an-HTML-dashboard/m-p/111035#M6281</guid>
      <dc:creator>chrismok</dc:creator>
      <dc:date>2014-09-15T03:22:59Z</dc:date>
    </item>
  </channel>
</rss>

