<?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 change font size of texts inside table using dashboard xml source in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/678356#M231979</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to change font size label (to bold) in pie chart&lt;/P&gt;&lt;P&gt;please help me with code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pavithra_0-1708618394356.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29442iD14B149D076D8FBF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pavithra_0-1708618394356.png" alt="pavithra_0-1708618394356.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2024 16:14:25 GMT</pubDate>
    <dc:creator>pavithra</dc:creator>
    <dc:date>2024-02-22T16:14:25Z</dc:date>
    <item>
      <title>How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381339#M111554</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
I have a splunk dashboard with different panels i.e. pie chart, table etc.&lt;BR /&gt;
I need to increase the font size of text inside the table. Can anyone please help in this?&lt;BR /&gt;
Is there a way to modify the source xml of dashboard to achieve this?&lt;/P&gt;

&lt;P&gt;Just to add,I am using shared splunk server where multiple application's logs are forwarded so I do not have admin access of Splunk.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2018 13:56:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381339#M111554</guid>
      <dc:creator>ggangwar</dc:creator>
      <dc:date>2018-06-12T13:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381340#M111555</link>
      <description>&lt;P&gt;@ggangwar, add the following code to your existing dashboard's Simple XML Code, it changes the font size in all tables&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          table tbody tr td{
            font-size:150% !important;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Refer to one of my older answers for your options to apply CSS to your dashboard: &lt;A href="https://answers.splunk.com/answers/590387/how-do-i-update-panel-color-in-splunk-using-css-1.html"&gt;https://answers.splunk.com/answers/590387/how-do-i-update-panel-color-in-splunk-using-css-1.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2018 15:04:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381340#M111555</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-06-12T15:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381341#M111556</link>
      <description>&lt;P&gt;Thanks It helped. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
I did not include depends field inside row. Using this was causing my table to disappear. Hence, , I rather put it under panel:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;row&amp;gt;
    &amp;lt;panel depends="$alwaysHideCSSPanel$"&amp;gt;
      &amp;lt;html&amp;gt;
         &amp;lt;style&amp;gt;
           table thead tr th,td{
           font-size:150% !important;
           width:150px !important;
           border: 1px solid black !important;
           text-align: right !important
           }
           table thead tr th{
            font-weight: bold !important;
           }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;....
           ...
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Jun 2018 15:18:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381341#M111556</guid>
      <dc:creator>ggangwar</dc:creator>
      <dc:date>2018-06-12T15:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381342#M111557</link>
      <description>&lt;P&gt;And, if I want to increase the font of table header as well? Then can it be done as follows?:&lt;BR /&gt;
           table tbody tr th{&lt;BR /&gt;
             font-size:150% !important;&lt;BR /&gt;
           }&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2018 15:23:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381342#M111557</guid>
      <dc:creator>ggangwar</dc:creator>
      <dc:date>2018-06-12T15:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381343#M111558</link>
      <description>&lt;P&gt;@ggangwar, almost there... Following is what you should use.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;table thead tr th{
font-size:150% !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My answer link attached above also tells you how to use Browser Inspector tool to find the CSS Selector for specific node to apply CSS Override. Do up vote if you find it useful!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2018 17:42:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381343#M111558</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-06-12T17:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381344#M111559</link>
      <description>&lt;P&gt;@niketnilay Somehow, the pdf generated out of this dashboard is not having effect of applied css. &lt;BR /&gt;
Can you please suggest what can I do for this?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jun 2018 03:51:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381344#M111559</guid>
      <dc:creator>ggangwar</dc:creator>
      <dc:date>2018-06-13T03:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381345#M111560</link>
      <description>&lt;P&gt;@ggangwar PDF renderer in Splunk has a lot of limitations and does not play well with customization in dashboard. So your option would be to Print PDF manually and export.&lt;/P&gt;

&lt;P&gt;May be if it is run on a dumb terminal use a utility code to take a snapshot at regular interval and email. (All this outside of Splunk).&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jun 2018 04:42:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381345#M111560</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-06-13T04:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381346#M111561</link>
      <description>&lt;P&gt;If this is the case, Splunk product needs improvement in order to have this feature. From User's perspective, it is inconsistent behavior in terms of what is visible in Dashboard and what is actually added in PDF.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jun 2018 06:54:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381346#M111561</guid>
      <dc:creator>ggangwar</dc:creator>
      <dc:date>2018-06-13T06:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381347#M111562</link>
      <description>&lt;P&gt;@ggangwar as far as I know this behavior has always been there. So I agree that PDF export needs complete revamp. If you have Splunk Entitlement you should reach out to Splunk Support with the enhancement request!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jun 2018 07:32:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/381347#M111562</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-06-13T07:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/525845#M148409</link>
      <description>&lt;P&gt;Thank you. It worked for me.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 15:47:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/525845#M148409</guid>
      <dc:creator>vvemula</dc:creator>
      <dc:date>2020-10-21T15:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to change font size of texts inside table using dashboard xml source</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/678356#M231979</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to change font size label (to bold) in pie chart&lt;/P&gt;&lt;P&gt;please help me with code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pavithra_0-1708618394356.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29442iD14B149D076D8FBF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pavithra_0-1708618394356.png" alt="pavithra_0-1708618394356.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 16:14:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-change-font-size-of-texts-inside-table-using-dashboard/m-p/678356#M231979</guid>
      <dc:creator>pavithra</dc:creator>
      <dc:date>2024-02-22T16:14:25Z</dc:date>
    </item>
  </channel>
</rss>

