<?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: Scale problem if we have a big value in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331577#M39710</link>
    <description>&lt;P&gt;Hi again,&lt;/P&gt;

&lt;P&gt;I've been trying to represent percents (&lt;STRONG&gt;values between 0 and 100&lt;/STRONG&gt;) and I have the same strange behaviour...&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2778i74258BA2E01DCE1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;What do you think about this? Every radar chart have a different strange scale...&lt;/P&gt;

&lt;P&gt;Thanks again for your comments!&lt;BR /&gt;
J.&lt;/P&gt;</description>
    <pubDate>Wed, 24 May 2017 10:19:15 GMT</pubDate>
    <dc:creator>Javip</dc:creator>
    <dc:date>2017-05-24T10:19:15Z</dc:date>
    <item>
      <title>Scale problem if we have a big value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331573#M39706</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;We are testing your radar chart and usually it's works superb. &lt;BR /&gt;
But when we hace this values...&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Subcategory, count&lt;/STRONG&gt;&lt;BR /&gt;
Network layer - Traffic Anomaly 1711&lt;BR /&gt;
Application layer - Vulnerability exploitation  2&lt;BR /&gt;
Information Gathering   1&lt;BR /&gt;
Other   1&lt;/P&gt;

&lt;P&gt;As you can see we have several small values and 1 very big. Unfortunately your Radar Chart doesn't scale ok and we cannot see that value...&lt;/P&gt;

&lt;P&gt;What do you suggest?&lt;/P&gt;

&lt;P&gt;Thanks a lot in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 11:49:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331573#M39706</guid>
      <dc:creator>Javip</dc:creator>
      <dc:date>2017-04-17T11:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Scale problem if we have a big value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331574#M39707</link>
      <description>&lt;P&gt;If those are your typical ratios, I'd suggest that you divide the number of anomalies by 100 and change the name to &lt;CODE&gt;Traffic Anomalies (in hundreds)&lt;/CODE&gt; or by 1000 and change the name to &lt;CODE&gt;Traffic Anomalies (in K)&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 15:50:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331574#M39707</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-17T15:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Scale problem if we have a big value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331575#M39708</link>
      <description>&lt;P&gt;Hello, &lt;BR /&gt;
Didn't think anyone really used this app.  I built it as a fun way to play around with D3.  I believe thats is a problem with factorLegend in radarchart.js and isn't a configurable option.  I don't have plans on working on this project any time soon.  Feel free to fork &lt;A href="https://github.com/httpstergeek/d3-splunk-extentions"&gt;https://github.com/httpstergeek/d3-splunk-extentions&lt;/A&gt;.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  var cfg = {
          radius: 5,
          w: 400,
          h: 400,
          factor: 1,
          **factorLegend: .85,**
          levels: 5,
          maxValue: 0.6,
          radians: 2 * Math.PI,
          opacityArea: 0.5,
          ToRight: 5,
          TranslateX: 60,
          TranslateY: 30,
          ExtraWidthX: 200,
          ExtraWidthY: 100,
          color: d3.scale.category10()
        };
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Apr 2017 17:45:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331575#M39708</guid>
      <dc:creator>bmacias84</dc:creator>
      <dc:date>2017-04-17T17:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Scale problem if we have a big value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331576#M39709</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;

&lt;P&gt;I was some days on holidays and I'm going to retest this App following your answers.&lt;/P&gt;

&lt;P&gt;bmacias84, I like a lot your App and I hope we could use it like a "custom viz" some day...&lt;BR /&gt;
Anyway thanks a lot for your App and for your extra comments.&lt;/P&gt;

&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 15:03:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331576#M39709</guid>
      <dc:creator>Javip</dc:creator>
      <dc:date>2017-04-26T15:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Scale problem if we have a big value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331577#M39710</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;

&lt;P&gt;I've been trying to represent percents (&lt;STRONG&gt;values between 0 and 100&lt;/STRONG&gt;) and I have the same strange behaviour...&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2778i74258BA2E01DCE1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;What do you think about this? Every radar chart have a different strange scale...&lt;/P&gt;

&lt;P&gt;Thanks again for your comments!&lt;BR /&gt;
J.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 10:19:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Scale-problem-if-we-have-a-big-value/m-p/331577#M39710</guid>
      <dc:creator>Javip</dc:creator>
      <dc:date>2017-05-24T10:19:15Z</dc:date>
    </item>
  </channel>
</rss>

