<?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 Highlighting selected point in scatter plot in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060616#M17015</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what i want to is make the selected points on a scatter chart a different color than the other points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The equation here works if only select one point, but not more due to getfieldselections returning a string&lt;/P&gt;&lt;P&gt;if([nameField]=getfieldselections([nameField]),rgb(50,205,50),rgb(0,0,128))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking of writing an equation like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( *nameField* = getfieldselections(nameField) , color1, color2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The idea being that if the nameField matches any part of the getFieldSelections string, then it returns color1.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Mar 2016 17:41:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-23T17:41:07Z</dc:date>
    <item>
      <title>Highlighting selected point in scatter plot</title>
      <link>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060616#M17015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what i want to is make the selected points on a scatter chart a different color than the other points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The equation here works if only select one point, but not more due to getfieldselections returning a string&lt;/P&gt;&lt;P&gt;if([nameField]=getfieldselections([nameField]),rgb(50,205,50),rgb(0,0,128))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking of writing an equation like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( *nameField* = getfieldselections(nameField) , color1, color2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The idea being that if the nameField matches any part of the getFieldSelections string, then it returns color1.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 17:41:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060616#M17015</guid>
      <dc:creator />
      <dc:date>2016-03-23T17:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Highlighting selected point in scatter plot</title>
      <link>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060617#M17016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to clarify the scatterplot it static and includes all points even with filters&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 21:30:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060617#M17016</guid>
      <dc:creator />
      <dc:date>2016-03-23T21:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Highlighting selected point in scatter plot</title>
      <link>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060618#M17017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(SubStringCount(GetFieldSelections(nameField,'|'),nameField), rgb(50,205,50),rgb(0,0,128))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 22:59:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060618#M17017</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-03-23T22:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Highlighting selected point in scatter plot</title>
      <link>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060619#M17018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I've used before as color expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;colormix1(count(distinct nameField)/count({1} distinct nameField),LightGray(),green())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 08:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Highlighting-selected-point-in-scatter-plot/m-p/1060619#M17018</guid>
      <dc:creator>Patrik_Lundblad</dc:creator>
      <dc:date>2016-03-24T08:10:35Z</dc:date>
    </item>
  </channel>
</rss>

