<?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 How do you create a permanently visible legend? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55782#M13623</link>
    <description>&lt;P&gt;When I create a pie chart, I can use mouse over or mouse hover to see the legend but I want the legend to be visible all the time.&lt;/P&gt;

&lt;P&gt;When I create a PDF of the dashboard there is no legend on the pie charts.  How do I enable this?&lt;/P&gt;</description>
    <pubDate>Fri, 20 Jan 2012 21:17:11 GMT</pubDate>
    <dc:creator>axdahl</dc:creator>
    <dc:date>2012-01-20T21:17:11Z</dc:date>
    <item>
      <title>How do you create a permanently visible legend?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55782#M13623</link>
      <description>&lt;P&gt;When I create a pie chart, I can use mouse over or mouse hover to see the legend but I want the legend to be visible all the time.&lt;/P&gt;

&lt;P&gt;When I create a PDF of the dashboard there is no legend on the pie charts.  How do I enable this?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2012 21:17:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55782#M13623</guid>
      <dc:creator>axdahl</dc:creator>
      <dc:date>2012-01-20T21:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do you create a permanently visible legend?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55783#M13624</link>
      <description>&lt;P&gt;I haven't tried this myself, so it's a bit of a guess (someone else might give you a better answer), but have you set the layoutSprite properties to &lt;CODE&gt;visible&lt;/CODE&gt; in the XML?&lt;/P&gt;

&lt;P&gt;See &lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3/Developer/AdvChartingConfig-TextblockLayoutspriteSprite#Layout_sprite"&gt;http://docs.splunk.com/Documentation/Splunk/4.3/Developer/AdvChartingConfig-TextblockLayoutspriteSprite#Layout_sprite&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The tool tip properties (&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3/Developer/CustomChartingConfig-Tooltip"&gt;http://docs.splunk.com/Documentation/Splunk/4.3/Developer/CustomChartingConfig-Tooltip&lt;/A&gt;) inherit from layoutSprite.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Jan 2012 01:00:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55783#M13624</guid>
      <dc:creator>ChrisG</dc:creator>
      <dc:date>2012-01-21T01:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you create a permanently visible legend?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55784#M13625</link>
      <description>&lt;P&gt;The trick is to concatenate the data series values into your pie slice label, as follows:&lt;/P&gt;

&lt;P&gt;Example 1 for count&lt;/P&gt;

&lt;P&gt;| stats count by op_eTOM&lt;BR /&gt;
| eval op_eTOM_Slice=op_eTOM+ ": " + count + " Transactions"&lt;BR /&gt;
| fields op_eTOM_Slice, count&lt;/P&gt;

&lt;P&gt;Example 2 for total durations&lt;/P&gt;

&lt;P&gt;| stats sum(Duration) as sum_Duration_Seconds by op_eTOM&lt;BR /&gt;
| eval total_Minutes=round(sum_Duration_Seconds/60)&lt;BR /&gt;
| eval op_eTOM_Slice=op_eTOM+ ": " + total_Minutes + " Minutes"&lt;BR /&gt;
| fields op_eTOM_Slice, sum_Duration_Seconds&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:23:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55784#M13625</guid>
      <dc:creator>bruceascot</dc:creator>
      <dc:date>2020-09-28T13:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do you create a permanently visible legend?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55785#M13626</link>
      <description>&lt;P&gt;Hi...How to set layoutSprite properties to visible in XML?&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;"&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;&lt;BR /&gt;
&lt;DASHBOARD&gt;&lt;BR /&gt;
  &lt;LABEL&gt;Analysis&lt;/LABEL&gt;&lt;BR /&gt;
  &lt;ROW&gt;&lt;BR /&gt;
    &lt;CHART&gt;&lt;BR /&gt;
      &lt;SEARCHNAME&gt;TicketAnalysis&lt;/SEARCHNAME&gt;&lt;BR /&gt;
      &lt;TITLE&gt;TicketAnalysis&lt;/TITLE&gt;&lt;BR /&gt;
      column&lt;BR /&gt;&lt;BR /&gt;
    &lt;/CHART&gt;&lt;BR /&gt;
  &lt;/ROW&gt;&lt;BR /&gt;
&lt;/DASHBOARD&gt;"&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 12:34:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55785#M13626</guid>
      <dc:creator>vaibhavbeohar</dc:creator>
      <dc:date>2013-04-02T12:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do you create a permanently visible legend?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55786#M13627</link>
      <description>&lt;P&gt;Do i have to give like following?&lt;/P&gt;

&lt;P&gt;visible&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 10:16:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-create-a-permanently-visible-legend/m-p/55786#M13627</guid>
      <dc:creator>vaibhavbeohar</dc:creator>
      <dc:date>2013-04-03T10:16:50Z</dc:date>
    </item>
  </channel>
</rss>

