<?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: Issues with Analytics Pane in Custom Visual in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2115716#M32231</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/330091"&gt;@IlonaSimakova&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes this issue is still relevant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue on GitHub is also still open:&amp;nbsp;&lt;A href="https://github.com/microsoft/PowerBI-visuals-tools/issues/351" target="_blank"&gt;https://github.com/microsoft/PowerBI-visuals-tools/issues/351&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
    <pubDate>Tue, 05 Oct 2021 09:00:16 GMT</pubDate>
    <dc:creator>paul-maessen</dc:creator>
    <dc:date>2021-10-05T09:00:16Z</dc:date>
    <item>
      <title>Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1623413#M27504</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to add the analystics-pane to my custom visual but i do have some issues.&lt;/P&gt;&lt;P&gt;I hope some one here can help me with these issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the GIF below you can see that the Constant line in the analytics pane is created and displayed in my visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Constant line in Analytics Pane" style="width: 640px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/440534iCE4CF188CD974933/image-size/large?v=v2&amp;amp;px=999" role="button" title="CustomVisualsAnalyticsPaneIssue.gif" alt="Constant line in Analytics Pane" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Constant line in Analytics Pane&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have the following questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How can I add another Constant line to the visual ? (as you can see I do NOT get another "+Add" below the added constant line)&lt;/LI&gt;&lt;LI&gt;Is it possible to prevent the redraw of the Constant line-pane each time I make a change to it ? (This does not happen in the native visuals that are using the analytics pane).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I have created a very basic custom visual showing a bar chart to have not such a large amount of code.&lt;/P&gt;&lt;P&gt;You can find the code on the following repository on Git Hub:&amp;nbsp;&lt;A href="https://github.com/novasilva/PowerBi-visual-dev-analytics" target="_blank" rel="noopener"&gt;Github Repo&lt;/A&gt;&amp;nbsp; This repo is specifically created to show the issues.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be nice if someone can help me with these questions, because I do get the same behavior when using the code from the Sample Bar Chart where an Average Line is implemented. (&lt;A href="https://github.com/microsoft/PowerBI-visuals-sampleBarChart" target="_blank" rel="noopener"&gt;https://github.com/microsoft/PowerBI-visuals-sampleBarChart&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 11:30:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1623413#M27504</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-01-26T11:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1627974#M27535</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/231096"&gt;@paul-maessen&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;After I check your '&lt;SPAN&gt;renderConstantLine&lt;/SPAN&gt;' function, I found you use the 'select' function to extract '.constant-line' elements.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;As the document mentioned, the select function only returns the first match result, but 'Constantline' may contain multiple instances.&amp;nbsp; I think you need to change these parts to handle multiple instance proceedings.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;BTW, I attached the link of 'power bi visuals core' here, you can take a look at the old version of official visuals processings if helps:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://github.com/visualbisolutions/PowerBI-visuals-core" target="_self"&gt;PowerBI-visuals-core&lt;/A&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 06:16:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1627974#M27535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-28T06:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1628182#M27537</link>
      <description>&lt;P&gt;Hi @Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are right about the "renderContantLine"-function. But in this case I am only able to create just one line because I do not get the "+Add" again once I created a constant line. In that case there is only one line...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One of my questions is now. How do I get this "+Add"-button to be able to create multiple lines?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 07:47:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1628182#M27537</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-01-28T07:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1629822#M27545</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/231096"&gt;@paul-maessen&lt;/a&gt;n,&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/visuals/analytics-pane#known-limitations-and-issues-of-the-analytics-pane" target="_self"&gt;There's no multi instance support yet&lt;/A&gt;, so you currently cannot add further instances to an object. 1 is the limit &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 17:46:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1629822#M27545</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2021-01-28T17:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1630929#M27547</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/231096"&gt;@paul-maessen&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Thanks for dm-p&amp;nbsp;'s notice, it seems like I missed the document that lists the known limitations of adding an analysis line to custom visuals.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;As the document mentions, currently you can't do multiple instance processing of constant line. For this scenario,&amp;nbsp;perhaps you can consider submitting an idea to add support for this feature.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 06:13:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1630929#M27547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-29T06:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631400#M27550</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;&amp;nbsp;,&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Indeed I completely missed the limitation about multi-instance support also.&lt;/P&gt;&lt;P&gt;Then there is just one issue left...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see in the initial post the analytics pane is rerendered every time something is changed. Can this be solved?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 09:41:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631400#M27550</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-01-29T09:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631465#M27551</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/231096"&gt;@paul-maessen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;It's a bit late in the evening for me to check out your code and reproduce locally, and I'm having a look at your repo on my phone but if I had to guess, it looks like you might be executing VisualSettings.enumerateObjectInstances three times in your Visual.enumerateObjectInstances method (&lt;A href="https://github.com/novasilva/PowerBi-visual-dev-analytics/blob/master/src/visual.ts#L144" target="_self"&gt;here&lt;/A&gt;, &lt;A href="https://github.com/novasilva/PowerBi-visual-dev-analytics/blob/master/src/visual.ts#L150" target="_self"&gt;here&lt;/A&gt; and also &lt;A href="https://github.com/novasilva/PowerBi-visual-dev-analytics/blob/master/src/visual.ts#L151" target="_self"&gt;here&lt;/A&gt; in the console.log). Each time this is executed, even for logging, it's going to enumerate your objects and probably refresh the pane each time. I might try to use the const declared in the first occurrence in your log statement and your return statement so you don't re-exexute the method again and see if this mitigates things.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 10:07:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631465#M27551</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2021-01-29T10:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631467#M27552</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks! I will check and disable logging also to see if that removes the rerendering.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 10:09:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631467#M27552</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-01-29T10:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631486#M27553</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have removed all the console.logs and it still happens.&lt;/P&gt;&lt;P&gt;If you can see in the attached gif it looks like it is "removing" the added constant-line and then adding it again after each change.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="analytics-pane-rerender.gif" style="width: 188px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/443124i117E5666F46F1B65/image-size/large?v=v2&amp;amp;px=999" role="button" title="analytics-pane-rerender.gif" alt="analytics-pane-rerender.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I just look at the individual frames in the attached gif I see that the following screen is showing up after making a change&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screenshot 2021-01-29 at 11.22.28.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/443126iE099BE090A3C3236/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2021-01-29 at 11.22.28.png" alt="Screenshot 2021-01-29 at 11.22.28.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As you can see here it is just saying there is no content for the Analytics Pane. So I am guessing that I am doing something wrong here &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;&amp;nbsp;Don't stay up late to look at it, there will be another day &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 10:25:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1631486#M27553</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-01-29T10:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1635182#M27587</link>
      <description>&lt;P&gt;I have noticed the same re-rendering behaviour in the example bar chart code (&lt;A href="https://github.com/microsoft/PowerBI-visuals-sampleBarChart" target="_blank"&gt;https://github.com/microsoft/PowerBI-visuals-sampleBarChart&lt;/A&gt;). Having done a few checks I can see that the&amp;nbsp;enumerateObjectInstances() function seems to be called only once.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 08:24:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1635182#M27587</guid>
      <dc:creator>WouterBo</dc:creator>
      <dc:date>2021-02-01T08:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1636513#M27599</link>
      <description>&lt;P&gt;Agreed - I've just set up a bare-minimum example on a new visual and the re-rendering does appear to always happen, irrespective of any code to customise the object enumeration. I'd suggest &lt;A href="https://github.com/microsoft/PowerBI-visuals-tools/issues" target="_self"&gt;raising an issue for this&lt;/A&gt; (if you haven't already) and see if the team can take a look.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 18:11:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1636513#M27599</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2021-02-01T18:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1638409#M27609</link>
      <description>&lt;P&gt;I've gone ahead and raised an issue on the github repo.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/microsoft/PowerBI-visuals-tools/issues/351" target="_self"&gt;https://github.com/microsoft/PowerBI-visuals-tools/issues/351&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 10:06:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/1638409#M27609</guid>
      <dc:creator>WouterBo</dc:creator>
      <dc:date>2021-02-02T10:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2112661#M32197</link>
      <description>&lt;P&gt;Good afternoon, &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/231096"&gt;@paul-maessen&lt;/a&gt;&amp;nbsp;!&lt;BR /&gt;Please check and let me know if the issue with the Analytics Pane is still relevant, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ilona&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;Microsoft PBI Custom Visuals&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 03 Oct 2021 21:44:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2112661#M32197</guid>
      <dc:creator>IlonaSimakova</dc:creator>
      <dc:date>2021-10-03T21:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2115716#M32231</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/330091"&gt;@IlonaSimakova&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes this issue is still relevant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue on GitHub is also still open:&amp;nbsp;&lt;A href="https://github.com/microsoft/PowerBI-visuals-tools/issues/351" target="_blank"&gt;https://github.com/microsoft/PowerBI-visuals-tools/issues/351&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 09:00:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2115716#M32231</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-10-05T09:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2119552#M32257</link>
      <description>&lt;P&gt;&lt;SPAN&gt;It should be fixed already. Please check it again.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Oct 2021 16:02:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2119552#M32257</guid>
      <dc:creator>nikitagrachev</dc:creator>
      <dc:date>2021-10-06T16:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2119586#M32259</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/24489"&gt;@nikitagrachev&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In which version of the API is this fixed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Oct 2021 16:21:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2119586#M32259</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-10-06T16:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Analytics Pane in Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2121033#M32276</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/24489"&gt;@nikitagrachev&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested it and it is solved indeed. Thanks.&lt;/P&gt;&lt;P&gt;I also noticed that the issue on Github us closed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Oct 2021 08:46:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Issues-with-Analytics-Pane-in-Custom-Visual/m-p/2121033#M32276</guid>
      <dc:creator>paul-maessen</dc:creator>
      <dc:date>2021-10-07T08:46:55Z</dc:date>
    </item>
  </channel>
</rss>

