<?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: Dashboard Chart Properties Not Working ? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98679#M5465</link>
    <description>&lt;P&gt;ah, ok. then i guess i need to used advanced XML with flash chart.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Mar 2012 19:24:37 GMT</pubDate>
    <dc:creator>cvajs</dc:creator>
    <dc:date>2012-03-21T19:24:37Z</dc:date>
    <item>
      <title>Dashboard Chart Properties Not Working ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98676#M5462</link>
      <description>&lt;P&gt;v4.3.1 linux&lt;/P&gt;

&lt;P&gt;i created a simple dashboard as below. however, when i try to add some colorizing charting options they do not seem to apply to the chart. bug, or am i doing something wrong? the 1st chart shows up as blue colums on black background with no text. also, when i edit the visualization via the web gui and choose one of the stacked column styles it wont stack the graph. why?&lt;/P&gt;

&lt;P&gt;using properties from here&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.1/Developer/CustomChartingConfig-FontColorBrushPalette#Font_and_color"&gt;http://docs.splunk.com/Documentation/Splunk/4.3.1/Developer/CustomChartingConfig-FontColorBrushPalette#Font_and_color&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;also, i dont know how to post code sample here as this forum mucks up the chars, so i tries to escape some stuff but this forum then adds chars, very very annoying!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;
&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Quik Firewall View&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;chart&amp;gt;
      &amp;lt;searchString&amp;gt;index=cisco_firewall | top error_code limit=5&amp;lt;/searchString&amp;gt;
      &amp;lt;title&amp;gt;Top 5 Events in the last 1hr&amp;lt;/title&amp;gt;
      &amp;lt;earliestTime&amp;gt;-1h&amp;lt;/earliestTime&amp;gt;
      &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;option name="charting.axisTitleX.text"&amp;gt;Cisco Firewall Event Code #&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.primaryAxisTitle.text"/&amp;gt;
      &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
      &amp;lt;option name="displayRowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.fontSize"&amp;gt;11&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.fontColor"&amp;gt;0xFFFFFF&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.backgroundColor"&amp;gt;0xFF0000&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.foregroundColor"&amp;gt;0x00FF00&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.seriesColors"&amp;gt;[0x6CB8CA,0xFAC61D,0xD85E3D,0x956E96,0xF7912C]&amp;lt;/option&amp;gt;
    &amp;lt;/chart&amp;gt;
    &amp;lt;chart&amp;gt;
      &amp;lt;searchString&amp;gt;index=cisco_firewall | top error_code limit=5&amp;lt;/searchString&amp;gt;
      &amp;lt;title&amp;gt;Top 5 Events in the last 24hrs&amp;lt;/title&amp;gt;
      &amp;lt;earliestTime&amp;gt;-24h&amp;lt;/earliestTime&amp;gt;
      &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;option name="charting.axisTitleX.text"&amp;gt;Cisco Firewall Event Code #&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.primaryAxisTitle.text"/&amp;gt;
      &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
      &amp;lt;option name="displayRowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
    &amp;lt;/chart&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;table&amp;gt;
      &amp;lt;searchString&amp;gt;index=cisco_firewall earliest=-1h latest=now [search index=cisco_firewall | top error_code limit=5 | table error_code] | stats count(error_code) by error_code event_desc | dedup error_code | sort - count(error_code)&amp;lt;/searchString&amp;gt;
      &amp;lt;title&amp;gt;Event Descriptions and Counts for above chart&amp;lt;/title&amp;gt;
      &amp;lt;earliestTime&amp;gt;-1h&amp;lt;/earliestTime&amp;gt;
      &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;option name="charting.axisTitleX.text"&amp;gt;Cisco Firewall Event Code #&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.backgroundColor"&amp;gt;0xFFFFFF&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.fontColor"&amp;gt;0xFF0000&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.primaryAxisTitle.text"/&amp;gt;
      &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
      &amp;lt;option name="displayRowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
    &amp;lt;/table&amp;gt;
    &amp;lt;table&amp;gt;
      &amp;lt;searchString&amp;gt;index=cisco_firewall earliest=-24h latest=now [search index=cisco_firewall | top error_code limit=5 | table error_code] | stats count(error_code) by error_code event_desc | dedup error_code | sort - count(error_code)&amp;lt;/searchString&amp;gt;
      &amp;lt;title&amp;gt;Event Descriptions and Counts for above chart&amp;lt;/title&amp;gt;
      &amp;lt;earliestTime&amp;gt;-24h&amp;lt;/earliestTime&amp;gt;
      &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
      &amp;lt;option name="charting.axisTitleX.text"&amp;gt;Cisco Firewall Event Code #&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
      &amp;lt;option name="charting.primaryAxisTitle.text"/&amp;gt;
      &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
      &amp;lt;option name="displayRowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;option name="drilldown"&amp;gt;all&amp;lt;/option&amp;gt;
    &amp;lt;/table&amp;gt;
  &amp;lt;/row&amp;gt;
 &amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Mar 2012 18:37:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98676#M5462</guid>
      <dc:creator>cvajs</dc:creator>
      <dc:date>2012-03-21T18:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard Chart Properties Not Working ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98677#M5463</link>
      <description>&lt;P&gt;Syntax is well documented here, and is linked in the text box when posting: &lt;A href="http://daringfireball.net/projects/markdown/syntax"&gt;http://daringfireball.net/projects/markdown/syntax&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 19:07:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98677#M5463</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-03-21T19:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard Chart Properties Not Working ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98678#M5464</link>
      <description>&lt;P&gt;These options are unfortunately currently not supported in the Javascript charting module that is used. More information here: &lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.1/Developer/AdvancedCharting"&gt;http://docs.splunk.com/Documentation/Splunk/4.3.1/Developer/AdvancedCharting&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 19:12:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98678#M5464</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-03-21T19:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard Chart Properties Not Working ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98679#M5465</link>
      <description>&lt;P&gt;ah, ok. then i guess i need to used advanced XML with flash chart.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 19:24:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-Chart-Properties-Not-Working/m-p/98679#M5465</guid>
      <dc:creator>cvajs</dc:creator>
      <dc:date>2012-03-21T19:24:37Z</dc:date>
    </item>
  </channel>
</rss>

