<?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 Simple XML: dashedStroke (dashed line chart series) in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135654#M8087</link>
    <description>&lt;P&gt;After reading another member's tip on how to modify a brush to apply a dashed-line rather than solid I attempted to apply the following to my own chart:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.myBrush"&amp;gt;dashedStroke&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.dashSize"&amp;gt;10&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.dashSpacing"&amp;gt;10&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.color"&amp;gt;0xFF0000&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.thickness"&amp;gt;5&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrushPalette"&amp;gt;list&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrushPalette.brushes"&amp;gt;[@myBrush]&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.chart.lineBrushPalette"&amp;gt;@myBrushPalette&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The code referenced utilized "param" rather than "option".  Is this an acceptable way to transfer this from advanced xml to simple xml?  If so, what is missing to make my series include dashed lines?&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Sat, 09 Nov 2013 19:00:50 GMT</pubDate>
    <dc:creator>bhay</dc:creator>
    <dc:date>2013-11-09T19:00:50Z</dc:date>
    <item>
      <title>Simple XML: dashedStroke (dashed line chart series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135654#M8087</link>
      <description>&lt;P&gt;After reading another member's tip on how to modify a brush to apply a dashed-line rather than solid I attempted to apply the following to my own chart:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.myBrush"&amp;gt;dashedStroke&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.dashSize"&amp;gt;10&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.dashSpacing"&amp;gt;10&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.color"&amp;gt;0xFF0000&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrush.thickness"&amp;gt;5&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrushPalette"&amp;gt;list&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.myBrushPalette.brushes"&amp;gt;[@myBrush]&amp;lt;/option&amp;gt;
&amp;lt;option name="charting.chart.lineBrushPalette"&amp;gt;@myBrushPalette&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The code referenced utilized "param" rather than "option".  Is this an acceptable way to transfer this from advanced xml to simple xml?  If so, what is missing to make my series include dashed lines?&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Nov 2013 19:00:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135654#M8087</guid>
      <dc:creator>bhay</dc:creator>
      <dc:date>2013-11-09T19:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XML: dashedStroke (dashed line chart series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135655#M8088</link>
      <description>&lt;P&gt;For this specific case, these params refer to charting options in FlashCharts, and given that Simple XML does not support FlashCharts in Splunk 6, these will effectively be ignored by the dashboard rendering engine.&lt;/P&gt;

&lt;P&gt;As far as customization of line charts within Simple XML goes, you can use show markers on the line charts.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="charting.chart.showMarkers"&amp;gt;true&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Viz/ChartConfigurationReference"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Viz/ChartConfigurationReference&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2013 17:12:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135655#M8088</guid>
      <dc:creator>nfilippi_splunk</dc:creator>
      <dc:date>2013-11-13T17:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XML: dashedStroke (dashed line chart series)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135656#M8089</link>
      <description>&lt;P&gt;Thank you for this response.  I did not realize what the default charting option was out of the box.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2013 17:37:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Simple-XML-dashedStroke-dashed-line-chart-series/m-p/135656#M8089</guid>
      <dc:creator>bhay</dc:creator>
      <dc:date>2013-11-13T17:37:05Z</dc:date>
    </item>
  </channel>
</rss>

