<?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: Tooltips for AppSource Flow map in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605463#M12281</link>
    <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/822015"&gt;@RichardLinderma&lt;/a&gt;&amp;nbsp;Which is the visual you are using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;</description>
    <pubDate>Tue, 11 Mar 2025 15:49:48 GMT</pubDate>
    <dc:creator>BeaBF</dc:creator>
    <dc:date>2025-03-11T15:49:48Z</dc:date>
    <item>
      <title>Tooltips for AppSource Flow map</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605016#M12275</link>
      <description>&lt;P&gt;I'm working with the flow map visual that I downloaded from AppSource, to display the journeys between different countries. I have added three tooltip measures as well - PAX Count, Spend, and Avg Fare. I want the tooltips to look like this, for example:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Madrid&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PAX Count&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Spend&lt;/TD&gt;&lt;TD&gt;18,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Avg Fare&lt;/TD&gt;&lt;TD&gt;3,000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it instead comes out as:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;MADRID&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;New York City&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;6,000&lt;/TD&gt;&lt;TD&gt;2,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Nashville&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;10,000&lt;/TD&gt;&lt;TD&gt;10,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2,000&lt;/TD&gt;&lt;TD&gt;1,000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I fix this to look like the upper example?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 11:22:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605016#M12275</guid>
      <dc:creator>RichardLinderma</dc:creator>
      <dc:date>2025-03-11T11:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for AppSource Flow map</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605302#M12278</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/822015"&gt;@RichardLinderma&lt;/a&gt;&amp;nbsp; Hi!&amp;nbsp;The issue you’re facing with the Flow Map visual in Power BI is likely due to how the tooltip context is being generated. Since the Flow Map inherently deals with connections between locations, it is displaying the breakdown per destination rather than aggregating the total values per origin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Solution: Using a Custom Tooltip Page&lt;/STRONG&gt;&lt;BR /&gt;Instead of relying on the default tooltip behavior, you can create a custom tooltip page that displays the aggregated data for the selected origin. Here’s how to do it:&lt;/P&gt;
&lt;P&gt;&lt;U&gt;1. Create a Tooltip Page&lt;/U&gt;&lt;BR /&gt;1. Go to Report View in Power BI.&lt;BR /&gt;2. Click on New Page, then rename it to something like TooltipPage.&lt;BR /&gt;3. In the Format Pane (for the page), set:&lt;BR /&gt;- Page Size → Tooltip.&lt;BR /&gt;- Allow Tooltip → On.&lt;BR /&gt;- Keep the page hidden so it doesn’t show in navigation.&lt;/P&gt;
&lt;P&gt;&lt;U&gt;2. Add a Table or Card Visualization&lt;/U&gt;&lt;BR /&gt;On the tooltip page:&lt;BR /&gt;- Insert a Table visual (or a series of Cards).&lt;BR /&gt;- Add the Origin Country field.&lt;BR /&gt;- Create and add aggregated measures for PAX Count, Spend, and Avg Fare.&lt;/P&gt;
&lt;P&gt;For example, define the following measures in DAX:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Total PAX Count = SUM('Table'[PAX Count])&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;Total Spend = SUM('Table'[Spend])&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;Avg Fare = DIVIDE([Total Spend], [Total PAX Count], 0)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Then, arrange them in the visual so that they appear in the format you want.&lt;/P&gt;
&lt;P&gt;&lt;U&gt;3. Assign the Tooltip Page to the Flow Map&lt;/U&gt;&lt;BR /&gt;1. Select the Flow Map visual.&lt;BR /&gt;2. Go to the Format Pane → Expand the Tooltip section.&lt;BR /&gt;3. Set Type to Report Page.&lt;BR /&gt;4. Select TooltipPage from the dropdown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 14:29:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605302#M12278</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-03-11T14:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for AppSource Flow map</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605459#M12280</link>
      <description>&lt;P&gt;Hi BeaBF, thanks for your response. Unfortunately, the Flow Map I'm using doesn't seem to have an area in the formatting where I can set the tooltip. Are there any other ways?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 15:43:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605459#M12280</guid>
      <dc:creator>RichardLinderma</dc:creator>
      <dc:date>2025-03-11T15:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for AppSource Flow map</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605463#M12281</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/822015"&gt;@RichardLinderma&lt;/a&gt;&amp;nbsp;Which is the visual you are using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 15:49:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4605463#M12281</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-03-11T15:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltips for AppSource Flow map</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4606641#M12296</link>
      <description>&lt;P&gt;The Flow map, published by Weiwei Cui with the source AppSource.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 09:35:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Tooltips-for-AppSource-Flow-map/m-p/4606641#M12296</guid>
      <dc:creator>RichardLinderma</dc:creator>
      <dc:date>2025-03-12T09:35:41Z</dc:date>
    </item>
  </channel>
</rss>

