<?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 Splunk 6 Advanced XML Charting Broken in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115878#M6629</link>
    <description>&lt;P&gt;charting.axisLabelsY.majorUnit&lt;/P&gt;

&lt;P&gt;charting.secondaryAxis.minimumNumber&lt;/P&gt;

&lt;P&gt;charting.secondaryAxis.maximumNumber&lt;/P&gt;

&lt;P&gt;These worked fine in Splunk 5 on advanced XML views, but stopped working in Splunk 6.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Apr 2014 01:41:07 GMT</pubDate>
    <dc:creator>Parameshwara</dc:creator>
    <dc:date>2014-04-02T01:41:07Z</dc:date>
    <item>
      <title>Splunk 6 Advanced XML Charting Broken</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115878#M6629</link>
      <description>&lt;P&gt;charting.axisLabelsY.majorUnit&lt;/P&gt;

&lt;P&gt;charting.secondaryAxis.minimumNumber&lt;/P&gt;

&lt;P&gt;charting.secondaryAxis.maximumNumber&lt;/P&gt;

&lt;P&gt;These worked fine in Splunk 5 on advanced XML views, but stopped working in Splunk 6.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2014 01:41:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115878#M6629</guid>
      <dc:creator>Parameshwara</dc:creator>
      <dc:date>2014-04-02T01:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk 6 Advanced XML Charting Broken</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115879#M6630</link>
      <description>&lt;P&gt;Are you sure you were not using the advanced charting options, in Simple XML? (If your XML starts with &lt;CODE&gt;&amp;lt;dashboard&amp;gt;&lt;/CODE&gt; or &lt;CODE&gt;&amp;lt;form&amp;gt;&lt;/CODE&gt; you are using Simple XML.)&lt;/P&gt;

&lt;P&gt;Flash (necessary for some advanced charting options) is &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.1/AdvancedDev/Migration#Flash_charting_not_available_in_simple_XML_dashboards"&gt;no longer supported in simple XML dashboards&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;To make an old dashboard work again in 6.x, I was able to go to [dashboard url]?showsource=1, select "Advanced XML view", copy and paste the advanced XML in the text box at the bottom into a new dashboard. Flash was then activated in this new dashboard.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2014 15:06:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115879#M6630</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2014-04-18T15:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk 6 Advanced XML Charting Broken</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115880#M6631</link>
      <description>&lt;P&gt;It's in advanced XML.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2014 06:59:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115880#M6631</guid>
      <dc:creator>Parameshwara</dc:creator>
      <dc:date>2014-04-22T06:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk 6 Advanced XML Charting Broken</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115881#M6632</link>
      <description>&lt;P&gt;Upgraded to Splunk 6.03, and it works now. I did not see this listed as a fix. I force my charts to be rendered using JSChart. &lt;/P&gt;

&lt;P&gt;My code is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSavedSearch"&amp;gt;
     &amp;lt;param name="savedSearch"&amp;gt;searchx&amp;lt;/param&amp;gt;
     &amp;lt;module name="HiddenChartFormatter"&amp;gt;
          &amp;lt;param name="charting.chart"&amp;gt;line&amp;lt;/param&amp;gt;
          &amp;lt;param name="legend.placement"&amp;gt;top&amp;lt;/param&amp;gt;
          &amp;lt;param name="charting.secondaryAxis.maximumNumber"&amp;gt;1200&amp;lt;/param&amp;gt;
          &amp;lt;param name="charting.axisLabelsY.majorUnit"&amp;gt;600&amp;lt;/param&amp;gt;
          &amp;lt;module name="JSChart"&amp;gt;
               &amp;lt;param name="height"&amp;gt;150px&amp;lt;/param&amp;gt;
               &amp;lt;param name="width"&amp;gt;100%&amp;lt;/param&amp;gt;
               &amp;lt;param name="enableResize"&amp;gt;False&amp;lt;/param&amp;gt;
          &amp;lt;/module&amp;gt; &amp;lt;!-- End JSChart --&amp;gt;
     &amp;lt;/module&amp;gt; &amp;lt;!-- End HiddenChartFormatter --&amp;gt;
&amp;lt;/module&amp;gt; &amp;lt;!-- End HiddenSavedSearch --&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Apr 2014 07:14:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-6-Advanced-XML-Charting-Broken/m-p/115881#M6632</guid>
      <dc:creator>Parameshwara</dc:creator>
      <dc:date>2014-04-22T07:14:33Z</dc:date>
    </item>
  </channel>
</rss>

