<?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 Pie-Chart tooltips not appearing when using Calcite Maps example in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744162#M68831</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am building an app based off of the Calcite maps example and have run into an issue.&amp;nbsp; When displaying a pie-chart in a popup it wont display the tooltip when hovering over the chart.&amp;nbsp; At first I thought that it was something that I had tweaked in my app&amp;nbsp;that was causing it not to appear. However, I can replicate the same issue when I take the feature layer with popup from the multiple popup elements example found here: &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/popup-multipleelements/index.html"&gt;https://developers.arcgis.com/javascript/latest/sample-code/popup-multipleelements/index.html&lt;/A&gt;&amp;nbsp;and put it in the Calcite maps example found here: &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/frameworks-bootstrap/index.html"&gt;https://developers.arcgis.com/javascript/latest/sample-code/frameworks-bootstrap/index.html&lt;/A&gt;.&amp;nbsp; The popup displays the requested data and chart, but when you hover over a wedge in the chart it doesn't show the category&amp;nbsp;and amount in a tooltip as it should.&amp;nbsp; There is something in the Calcite maps template that is prohibiting it from displaying, possibly a&amp;nbsp;CSS issue?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Feb 2017 16:20:54 GMT</pubDate>
    <dc:creator>BobNichols</dc:creator>
    <dc:date>2017-02-10T16:20:54Z</dc:date>
    <item>
      <title>Pie-Chart tooltips not appearing when using Calcite Maps example</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744162#M68831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am building an app based off of the Calcite maps example and have run into an issue.&amp;nbsp; When displaying a pie-chart in a popup it wont display the tooltip when hovering over the chart.&amp;nbsp; At first I thought that it was something that I had tweaked in my app&amp;nbsp;that was causing it not to appear. However, I can replicate the same issue when I take the feature layer with popup from the multiple popup elements example found here: &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/popup-multipleelements/index.html"&gt;https://developers.arcgis.com/javascript/latest/sample-code/popup-multipleelements/index.html&lt;/A&gt;&amp;nbsp;and put it in the Calcite maps example found here: &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/frameworks-bootstrap/index.html"&gt;https://developers.arcgis.com/javascript/latest/sample-code/frameworks-bootstrap/index.html&lt;/A&gt;.&amp;nbsp; The popup displays the requested data and chart, but when you hover over a wedge in the chart it doesn't show the category&amp;nbsp;and amount in a tooltip as it should.&amp;nbsp; There is something in the Calcite maps template that is prohibiting it from displaying, possibly a&amp;nbsp;CSS issue?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2017 16:20:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744162#M68831</guid>
      <dc:creator>BobNichols</dc:creator>
      <dc:date>2017-02-10T16:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Pie-Chart tooltips not appearing when using Calcite Maps example</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744163#M68832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; It is a calcite css issue with tooltips (it is an issue in 3.x as well).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to add this css rule (adjust colors as desired):&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="selector token"&gt;.dijitTooltip&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;position&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; absolute&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;z-index&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 2000&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;display&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; block&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;left&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 0&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;top&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; -10000px&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;overflow&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; visible&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;background-color&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; white&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;border-color&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; black&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;border-style&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; solid&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;border-width&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; thin&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;padding&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 2px&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;font-size&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 8pt&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;color&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; black&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:40:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744163#M68832</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T07:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Pie-Chart tooltips not appearing when using Calcite Maps example</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744164#M68833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did the trick, Thank You!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2017 18:24:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pie-chart-tooltips-not-appearing-when-using/m-p/744164#M68833</guid>
      <dc:creator>BobNichols</dc:creator>
      <dc:date>2017-02-10T18:24:31Z</dc:date>
    </item>
  </channel>
</rss>

