<?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>All Custom Visuals Development Discussion posts</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/bd-p/CustomVisualsDevelopmentDiscussion</link>
    <description>All Custom Visuals Development Discussion posts</description>
    <pubDate>Sat, 22 Aug 2026 23:38:00 GMT</pubDate>
    <dc:creator>CustomVisualsDevelopmentDiscussion</dc:creator>
    <dc:date>2026-08-22T23:38:00Z</dc:date>
    <item>
      <title>Re: Best User-Friendly Horizontal Bar Graph Drill-Down Dashboard Methodology</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Best-User-Friendly-Horizontal-Bar-Graph-Drill-Down-Dashboard/m-p/5360773#M13248</link>
      <description>&lt;H2&gt;Solution: Getting two Power BI bar charts to cross-filter with a security filter in place&lt;/H2&gt;&lt;P&gt;I finally got this working, so I wanted to close the loop for anyone who runs into a similar problem.&amp;nbsp; (My ID is only an alias.)&lt;/P&gt;&lt;P&gt;My setup was:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Portfolios[My ID] → Contacts[My ID] was a many-to-one relationship with single-direction filtering.&lt;/LI&gt;&lt;LI&gt;One bar chart showed Portfolios[Moves Manager: Name].&lt;/LI&gt;&lt;LI&gt;The other showed Contacts[Contact Report Type Groups (groups)].&lt;/LI&gt;&lt;LI&gt;I wanted clicking either chart to filter the other.&lt;/LI&gt;&lt;LI&gt;I also had a required page-level Security[Viewer] filter. Security is a permissions table with a many-to-many relationship to Portfolios through Moves Manager / Can See, and this security architecture needed to remain unchanged.&lt;/LI&gt;&lt;LI&gt;I am working from a live/remote model, so Power Query/Transform Data wasn't available.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Several approaches didn't work. CROSSFILTER() and TREATAS() by themselves didn't produce the required visual-to-visual filtering. Adding a calculated column to Contacts wasn't possible with the live model. Changing the existing Portfolios/Contacts relationship to bidirectional caused Power BI to freeze, so I abandoned that approach.&lt;/P&gt;&lt;P&gt;The key discovery was that the Security[Viewer] page filter was interfering with the cross-filtering. Without that filter, the visuals behaved much better.&lt;/P&gt;&lt;H3&gt;Final solution&lt;/H3&gt;&lt;P&gt;I created a local calculated table containing the distinct, nonblank My ID values from both tables:&lt;/P&gt;&lt;P&gt;My Bridge = FILTER( DISTINCT( UNION( SELECTCOLUMNS( 'Portfolios', "My ID", 'Portfolios'[My ID] ), SELECTCOLUMNS( 'Contacts', "My ID", 'Contacts'[My ID] ) ) ), NOT ISBLANK([My ID]) )&lt;/P&gt;&lt;P&gt;I created an active, single-direction relationship:&lt;/P&gt;&lt;P&gt;My Bridge[My ID] 1 → * Portfolios[My ID]&lt;/P&gt;&lt;P&gt;I could not make the Bridge → Contacts relationship active because Power BI reported an ambiguous path through the existing Portfolios → Contacts relationship.&lt;/P&gt;&lt;P&gt;The important part was then using these measures to explicitly transfer the selected IDs between the two tables.&lt;/P&gt;&lt;P&gt;For the Moves Manager chart:&lt;/P&gt;&lt;P&gt;Portfolio Count = CALCULATE( COUNTROWS('Portfolios'), TREATAS( VALUES('Contacts'[My ID]), 'Portfolios'[My ID] ) )&lt;/P&gt;&lt;P&gt;For the Contact Group chart:&lt;/P&gt;&lt;P&gt;Contact Count = CALCULATE( COUNTROWS('Contacts'), TREATAS( VALUES('Portfolios'[My ID]), 'Contacts'[My ID] ) )&lt;/P&gt;&lt;P&gt;The visuals are:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Moves Manager&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Axis: Portfolios[Moves Manager: Name]&lt;/LI&gt;&lt;LI&gt;Values: Portfolio Count&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Contact Groups&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Axis: Contacts[Contact Report Type Groups (groups)]&lt;/LI&gt;&lt;LI&gt;Values: Contact Count&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Both visual interactions are set to &lt;STRONG&gt;Filter&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;This finally gives me the desired behavior:&lt;/P&gt;&lt;P&gt;Moves Manager ↔ Contact Group&lt;/P&gt;&lt;P&gt;while preserving the required:&lt;/P&gt;&lt;P&gt;Security[Viewer] → Portfolios → Contacts&lt;/P&gt;&lt;P&gt;security filtering.&lt;/P&gt;&lt;P&gt;So the final solution avoided changing the security model, avoided bidirectional filtering, avoided Power Query, and worked within the limitations of the live model.&lt;/P&gt;&lt;P&gt;Hopefully this helps someone else who runs into the same combination of one-way relationships, visual cross-filtering, and a required security/permissions filter.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2026 21:15:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Best-User-Friendly-Horizontal-Bar-Graph-Drill-Down-Dashboard/m-p/5360773#M13248</guid>
      <dc:creator>reikerpg</dc:creator>
      <dc:date>2026-08-21T21:15:30Z</dc:date>
    </item>
    <item>
      <title>Ordering in Microsoft's Gantt Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Ordering-in-Microsoft-s-Gantt-Visual/m-p/5360749#M13247</link>
      <description>&lt;P&gt;I am building a gantt chart using Microsoft's gantt visual extension and I came accross the following issue.&lt;BR /&gt;&lt;BR /&gt;I use both task and parent fields when building the visual and I needed to establish a cusom order of displaying the gantt bars. I achieved that by creating sorting columns and sorting the data in data view by those.&amp;nbsp;&lt;/P&gt;&lt;P&gt;However when I publish the report into Power BI online services, the ordering breaks. I wonder if anyone had similar issue previously and if it was possible to solve it.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2026 17:01:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Ordering-in-Microsoft-s-Gantt-Visual/m-p/5360749#M13247</guid>
      <dc:creator>NarekGrigoryan</dc:creator>
      <dc:date>2026-08-21T17:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Best User-Friendly Horizontal Bar Graph Drill-Down Dashboard Methodology</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Best-User-Friendly-Horizontal-Bar-Graph-Drill-Down-Dashboard/m-p/5360563#M13246</link>
      <description>&lt;P&gt;I’d use a DAX measure with a disconnected table to control the interaction.&lt;/P&gt;&lt;P&gt;The main idea is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Show row count by &lt;STRONG&gt;Column 1&lt;/STRONG&gt; in a horizontal bar chart.&lt;/LI&gt;&lt;LI&gt;When a bar is selected, highlight that bar and use &lt;STRONG&gt;Column 2&lt;/STRONG&gt; as the legend.&lt;/LI&gt;&lt;LI&gt;Keep the bar lengths unchanged and grey out the other bars.&lt;/LI&gt;&lt;LI&gt;When the selection is cleared, return to the original view without a legend.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I think this would give a cleaner and more user-friendly experience than using the default drill-down.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2026 05:03:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Best-User-Friendly-Horizontal-Bar-Graph-Drill-Down-Dashboard/m-p/5360563#M13246</guid>
      <dc:creator>kmohan81</dc:creator>
      <dc:date>2026-08-21T05:03:15Z</dc:date>
    </item>
    <item>
      <title>Best User-Friendly Horizontal Bar Graph Drill-Down Dashboard Methodology</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Best-User-Friendly-Horizontal-Bar-Graph-Drill-Down-Dashboard/m-p/5360530#M13245</link>
      <description>&lt;P&gt;How would I conceptually define the following in Power BI? Say I have two columns in a dataset. I would like to see a horizontal bar graph of number of rows sorted by the first column. When I click on a bar, I would like all the bar shapes to remain the same length; the bar I select should then act as if the legend parameter were the second column while greying out all the other bars. This should then revert back to a blank legend when I deselect a bar.&amp;nbsp; I am open to other ideas if they work better.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2026 23:12:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Best-User-Friendly-Horizontal-Bar-Graph-Drill-Down-Dashboard/m-p/5360530#M13245</guid>
      <dc:creator>reikerpg</dc:creator>
      <dc:date>2026-08-20T23:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Deneb/vega on power bi</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Deneb-vega-on-power-bi/m-p/5355292#M13244</link>
      <description>&lt;P&gt;Thank you, this is very helpful.&lt;/P&gt;&lt;P&gt;I checked the DAX behind the measures, and I have a bit more information now.&lt;/P&gt;&lt;P&gt;For the entity-filter issue, most of the measures involved are actually calculated directly from the same fact table, t_pbi_dash, which is also the table containing the entity field used in the visual:&lt;/P&gt;&lt;PRE&gt;'t_pbi_dash'[entite_realisatrice]&lt;/PRE&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;PRE&gt;_tx_prises_sur_ajt =
DIVIDE([_pris], [_tout_ajt], 0)&lt;/PRE&gt;&lt;P&gt;with:&lt;/P&gt;&lt;PRE&gt;_pris =
VAR DateDebut = MIN('t_pbi_sequence_date'[date_serie])
VAR DateFin   = MAX('t_pbi_sequence_date'[date_serie])
RETURN
COALESCE(
    CALCULATE(
        COUNTA('t_pbi_dash'[id_op]),
        't_pbi_dash'[prise],
        't_pbi_dash'[titulaire_ou_associee],
        't_pbi_dash'[date_ajt_fin] &amp;gt;= DateDebut,
        't_pbi_dash'[date_ajt] &amp;lt;= DateFin
    ),
    0
)&lt;/PRE&gt;&lt;P&gt;and:&lt;/P&gt;&lt;PRE&gt;_tout_ajt =
VAR DateDebut = MIN('t_pbi_sequence_date'[date_serie])
VAR DateFin   = MAX('t_pbi_sequence_date'[date_serie])
RETURN
COALESCE(
    CALCULATE(
        COUNTA('t_pbi_dash'[id_op]),
        't_pbi_dash'[titulaire_ou_associee],
        't_pbi_dash'[date_ajt_fin] &amp;gt;= DateDebut,
        't_pbi_dash'[date_ajt] &amp;lt;= DateFin
    ),
    0
)&lt;/PRE&gt;&lt;P&gt;The same is true for _pris_saisi, _pris_aht, _precaire, etc. They all reference t_pbi_dash directly and do not currently use ALL, REMOVEFILTERS, or another unrelated fact table.&lt;/P&gt;&lt;P&gt;Because of that, I am now less convinced that TREATAS is necessary for these particular measures, since the filter on t_pbi_dash[entite_realisatrice] should already be part of the filter context.&lt;/P&gt;&lt;P&gt;I will still check the remaining measures, especially _stab_AHT and _Tx_fenêtres_prises, because those may use other tables.&lt;/P&gt;&lt;P&gt;Regarding the 176.7% value, I think I found a likely cause.&lt;/P&gt;&lt;P&gt;The rate is:&lt;/P&gt;&lt;PRE&gt;_tx_saisie_sur_AHT =
DIVIDE([_pris_saisi], [_tout_AHT], 0)&lt;/PRE&gt;&lt;P&gt;with:&lt;/P&gt;&lt;PRE&gt;_tout_AHT =
[_tout_ajt] - [_hors_prgm]&lt;/PRE&gt;&lt;P&gt;However, _pris_saisi currently includes rows that are outside the program:&lt;/P&gt;&lt;PRE&gt;_pris_saisi =
VAR DateDebut = MIN('t_pbi_sequence_date'[date_serie])
VAR DateFin   = MAX('t_pbi_sequence_date'[date_serie])
RETURN
COALESCE(
    CALCULATE(
        COUNTA('t_pbi_dash'[id_op]),
        't_pbi_dash'[pris_pas_pris_saisi],
        't_pbi_dash'[titulaire_ou_associee],
        't_pbi_dash'[date_ajt_fin] &amp;gt;= DateDebut,
        't_pbi_dash'[date_ajt] &amp;lt;= DateFin
    ),
    0
)&lt;/PRE&gt;&lt;P&gt;So the numerator can contain “hors programme” rows while the denominator explicitly removes them.&lt;/P&gt;&lt;P&gt;In other words, the current calculation is effectively:&lt;/P&gt;&lt;PRE&gt;entered AHT, including out-of-program rows
------------------------------------------
total AHT excluding out-of-program rows&lt;/PRE&gt;&lt;P&gt;That seems like a plausible explanation for a value greater than 100%.&lt;/P&gt;&lt;P&gt;My next steps are therefore:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;make _pris_saisi use the same program scope as _tout_AHT;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;compare each rate by entite_realisatrice in a normal Power BI table before looking at Deneb;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;inspect the remaining measures that may use other tables;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;only use TREATAS where the entity filter genuinely needs to be propagated to another table.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;So at this stage, Vega seems unlikely to be the source of either issue: the 176.7% appears to come from the DAX ratio itself, and the identical radars may only concern some of the measures rather than all of them.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2026 08:41:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Deneb-vega-on-power-bi/m-p/5355292#M13244</guid>
      <dc:creator>Serizawa</dc:creator>
      <dc:date>2026-08-10T08:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft Sankey Visual: How can I prevent destination nodes being automatically reordered?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Microsoft-Sankey-Visual-How-can-I-prevent-destination-nodes/m-p/5352436#M13243</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1753761" data-lia-user-login="Silsil" class="lia-mention lia-mention-user"&gt;Silsil&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don’t think you’re missing a sort setting here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Microsoft Sankey visual does its own node layout, so the order of the destination nodes is not driven reliably by the model’s &lt;STRONG&gt;Sort by column&lt;/STRONG&gt; order. That is why your &lt;STRONG&gt;1 = Apple, 2 = Pear, 3 = Fig, 4 = Cherry&lt;/STRONG&gt; column can sort correctly elsewhere in the model but still be ignored by the Sankey.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There also does not appear to be a supported option in the visual to lock the destination nodes into a fixed order. Turning off &lt;STRONG&gt;Auto links reorder&lt;/STRONG&gt; affects the links, but it does not give you a fixed node sort order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So for the exact requirement you have, I see two realistic options:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Manually position the nodes in the Microsoft visual, which as you mentioned is not ideal if you need repeatable placement.&lt;/LI&gt;&lt;LI&gt;Use a visual where node position/order can be explicitly controlled, for example Deneb or another Sankey custom visual that exposes node ordering.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I would not spend more time trying different DAX sort columns here. From what you’ve tested, this looks like the Sankey visual is deciding the node placement itself rather than following the model sort order.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2026 13:42:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Microsoft-Sankey-Visual-How-can-I-prevent-destination-nodes/m-p/5352436#M13243</guid>
      <dc:creator>ShivekMaharaj</dc:creator>
      <dc:date>2026-08-08T13:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: RACI Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/RACI-Matrix/m-p/5347648#M13242</link>
      <description>&lt;P&gt;Hello, I see I can get the file on GIT hub... I am decent at power bi but is there a way to edit the datafileds to input my use case? or do I have to build a entire new dashboard separately.&amp;nbsp; Sorry if this is a dumb question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2026 16:22:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/RACI-Matrix/m-p/5347648#M13242</guid>
      <dc:creator>Alexnwndrlnd25</dc:creator>
      <dc:date>2026-08-06T16:22:26Z</dc:date>
    </item>
    <item>
      <title>Microsoft Sankey Visual: How can I prevent destination nodes being automatically reordered?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Microsoft-Sankey-Visual-How-can-I-prevent-destination-nodes/m-p/5344240#M13241</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm using the Microsoft Sankey visual in Power BI Desktop and would like to keep the node order consistent between the left and right sides of the chart.&lt;/P&gt;&lt;P&gt;My source data is structured as:&lt;/P&gt;&lt;DIV class=""&gt;From To Value &lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Apples&lt;/TD&gt;&lt;TD&gt;Apples&lt;/TD&gt;&lt;TD&gt;45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Apples&lt;/TD&gt;&lt;TD&gt;Pears&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pears&lt;/TD&gt;&lt;TD&gt;Fig&lt;/TD&gt;&lt;TD&gt;26&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fig&lt;/TD&gt;&lt;TD&gt;Cherry&lt;/TD&gt;&lt;TD&gt;115&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Cherry&lt;/TD&gt;&lt;TD&gt;Cherry&lt;/TD&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;P&gt;Intended category order:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Apple&lt;/LI&gt;&lt;LI&gt;Pear&lt;/LI&gt;&lt;LI&gt;Fig&lt;/LI&gt;&lt;LI&gt;Cherry&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;However, the Sankey visual automatically changes the order of the destination nodes &lt;SPAN&gt;presumably to reduce flow crossings.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I have already tried:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Creating a numeric sort column (1 = Severe, 2 = Moderate, 3 = Mild, 4 = Normal renal function)&lt;/LI&gt;&lt;LI&gt;Using &lt;STRONG&gt;Sort by Column&lt;/STRONG&gt; on the destination field (To)&lt;/LI&gt;&lt;LI&gt;Creating a separate Category/SortOrder lookup table&lt;/LI&gt;&lt;LI&gt;Sorting both the source data and lookup table correctly&lt;/LI&gt;&lt;LI&gt;Disabling &lt;STRONG&gt;Auto links reorder&lt;/STRONG&gt; in the visual settings&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Power BI accepts the sort order without errors, but the Sankey visual continues to reorder the destination nodes.&lt;/P&gt;&lt;P&gt;Manually dragging is not ideal, as the freehand movement does not allow precision. My questions are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Does the Microsoft Sankey visual support a fixed destination node order?&lt;/LI&gt;&lt;LI&gt;Is there a supported way to force the same category order on both sides of the Sankey&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any advice would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2026 15:40:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Microsoft-Sankey-Visual-How-can-I-prevent-destination-nodes/m-p/5344240#M13241</guid>
      <dc:creator>Silsil</dc:creator>
      <dc:date>2026-08-05T15:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Box and Whisker visual</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Box-and-Whisker-visual/m-p/5337666#M13240</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="934981" data-lia-user-login="sfarooq3" class="lia-mention lia-mention-user"&gt;sfarooq3&lt;/a&gt;&amp;nbsp;Hi!&lt;/P&gt;
&lt;P&gt;This happens because a box-and-whisker chart needs several faculty values to calculate the median, quartiles, and whiskers. When you select only one faculty member, the slicer filters out everyone else, so there is no longer a distribution to display.&lt;/P&gt;
&lt;P&gt;A possible workaround is to create a disconnected faculty table:&lt;/P&gt;
&lt;P&gt;Faculty Selector =&lt;/P&gt;
&lt;P&gt;DISTINCT ( Faculty[Faculty Name] )&lt;/P&gt;
&lt;P&gt;Use this new column in the faculty slicer, but don’t create a relationship with the main model. This way, selecting a faculty member won’t remove the other people from the department’s box plot.&lt;/P&gt;
&lt;P&gt;The limitation is that the MAQ visual may not allow you to highlight the selected faculty members as individual points. For that type of comparison, I’d suggest using Deneb. You can keep the department-level box plot and overlay the selected faculty members as highlighted dots, with their names and publication counts in the tooltip.&lt;/P&gt;
&lt;P&gt;If you mainly want to compare faculty members directly, a dot plot or ranked bar chart may also be easier to read than a box-and-whisker chart.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Aug 2026 13:12:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Box-and-Whisker-visual/m-p/5337666#M13240</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2026-08-03T13:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Claendar - view of titles</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Claendar-view-of-titles/m-p/5337658#M13238</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1742334" data-lia-user-login="UlaTomczyk" class="lia-mention lia-mention-user"&gt;UlaTomczyk&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-end="11" data-start="0"&gt;Hi Urszula,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-end="243" data-start="13"&gt;Thank you for sharing your feedback. The window shown is part of the new Date picker slicer, currently available as a preview feature. It intentionally allows users to switch between Manual and Relative date selection.&lt;/P&gt;
&lt;P data-end="459" data-start="245"&gt;At present, the Relative tab cannot be hidden independently. However, the report author can replace this slicer with a simpler style, such as Between, Before, After, List, or Dropdown, from:&lt;/P&gt;
&lt;P data-end="514" data-start="461"&gt;Format visual → Slicer settings → Options → Style&lt;/P&gt;
&lt;P data-end="862" data-start="516"&gt;Since the Date picker is still in preview, I would also recommend submitting this feedback through the dedicated &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Share-your-thoughts-on-date-picker-option-in-the-slicer-visual/m-p/5196792" target="_blank"&gt;Share your thoughts on date picker option in the s... - Microsoft Fabric Community&lt;/A&gt;, where the product team is collecting comments about its usability.&lt;/P&gt;
&lt;P data-is-only-node="" data-is-last-node="" data-end="1030" data-start="864"&gt;You can find the available slicer configurations in the &lt;A href="https://learn.microsoft.com/en-us/power-bi/visuals/desktop-slicer-filter-date-range" target="_blank"&gt;Create a Relative Date Slicer or Filter in Power BI - Power BI | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;BF&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;
&lt;P data-is-only-node="" data-is-last-node="" data-end="1030" data-start="864"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2026 13:09:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Claendar-view-of-titles/m-p/5337658#M13238</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2026-08-03T13:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Deneb/vega on power bi</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Deneb-vega-on-power-bi/m-p/5337651#M13237</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1737006" data-lia-user-login="Serizawa" class="lia-mention lia-mention-user"&gt;Serizawa&lt;/a&gt;&amp;nbsp;Hi! &lt;BR /&gt;The disconnected indicator table is correct and does not need a relationship. The issue is more likely that the measures used in the SWITCH do not all receive the filter from 't_pbi_dash'[entite_realisatrice].&lt;/P&gt;
&lt;P&gt;As a first test, I would explicitly pass the selected entity to the fact table used by each measure with TREATAS:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Radar Value =&lt;BR /&gt;VAR _Indicator =&lt;BR /&gt;SELECTEDVALUE ( t_radar_Indicateurs[Indicateur] )&lt;/P&gt;
&lt;P&gt;VAR _Entities =&lt;BR /&gt;VALUES ( 't_pbi_dash'[entite_realisatrice] )&lt;/P&gt;
&lt;P&gt;RETURN&lt;BR /&gt;SWITCH (&lt;BR /&gt;_Indicator,&lt;/P&gt;
&lt;P&gt;"Taux de précaires",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_tx_precaire],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactPrecaire'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;/P&gt;
&lt;P&gt;"Stab AHT",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_tx_stabiliteAHT_All],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactAHT'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;/P&gt;
&lt;P&gt;"Saisie AHT",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_tx_saisie_sur_AHT],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactAHT'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;/P&gt;
&lt;P&gt;"Consommation AHT",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_tx_pris_AHT],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactAHT'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;/P&gt;
&lt;P&gt;"Taux de saisie AJT",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_tx_prises_sur_ajt],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactAJT'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;/P&gt;
&lt;P&gt;"Consommation AJT",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_tx_consommation_ajt],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactAJT'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;/P&gt;
&lt;P&gt;"Tx consommation Fenêtres",&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[_Tx_fenêtres_prises],&lt;BR /&gt;KEEPFILTERS (&lt;BR /&gt;TREATAS (&lt;BR /&gt;_Entities,&lt;BR /&gt;'FactFenetres'[entite_realisatrice]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The fact-table and column names must obviously be replaced with the actual ones. If this measure produces different radars, it confirms that the entity filter was not propagating to all the tables. The permanent solution would be to create a shared entity dimension related one-to-many to every fact table and use the entity field from that dimension in the visual.&lt;/P&gt;
&lt;P&gt;For the 176.7%, I would check the AHT measure directly. It should return a decimal ratio and should not multiply by 100:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;_tx_saisie_sur_AHT =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;[Distinct AHT Entries],&lt;BR /&gt;[Distinct Expected AHT],&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For example:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Distinct AHT Entries =&lt;BR /&gt;DISTINCTCOUNT ( 'FactAHT'[AHT_ID] )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Distinct Expected AHT =&lt;BR /&gt;DISTINCTCOUNT ( 'FactAHTExpected'[AHT_ID] )&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If the numerator and denominator come from different tables, make sure they are both filtered by the same entity dimension. If the expected AHT table is not filtered by entity, apply the same entity filter with TREATAS.&lt;/P&gt;
&lt;P&gt;I would then remove the conditional percentage conversion from Vega. Keep both measures and thresholds as decimals, use:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;{&lt;BR /&gt;"name": "r",&lt;BR /&gt;"type": "linear",&lt;BR /&gt;"domain": [0, 1],&lt;BR /&gt;"range": [0, {"signal": "radius"}],&lt;BR /&gt;"clamp": true&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;and format the label with:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;"format(datum.Taux, '.1%')"&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If _tx_saisie_sur_AHT returns 1.767, then 176.7% is the real DAX result. In that case, the numerator is greater than the denominator, most likely because of duplicated AHT identifiers, different grains, or different filter contexts. Vega is only displaying the value it receives.&lt;/P&gt;
&lt;DIV style="font-family: Segoe UI, sans-serif; font-size: 14px; line-height: 1.2;"&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;Did I answer your question?&lt;/STRONG&gt; Mark my post as a solution! &lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Kudos are appreciated &lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt; Proud to be a Super User!&lt;/STRONG&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt; &lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2026 13:05:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Deneb-vega-on-power-bi/m-p/5337651#M13237</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2026-08-03T13:05:55Z</dc:date>
    </item>
    <item>
      <title>Claendar - view of titles</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Claendar-view-of-titles/m-p/5332660#M13236</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are wondering as your lucky customer&amp;nbsp; DPD Poland why you complicate view of calendar? it is completly not usefull in our opinion, please concider to replace it as pragmatic one or rather hide it in general. Trust me, it is stone in a shoe to read data and be well informed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm staying at your disposal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Urszula Tomczyk&lt;/P&gt;&lt;P&gt;OPS Dirtector&amp;nbsp;&lt;/P&gt;&lt;P&gt;DPD Polska&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2026 12:10:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Claendar-view-of-titles/m-p/5332660#M13236</guid>
      <dc:creator>UlaTomczyk</dc:creator>
      <dc:date>2026-07-31T12:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete grey dotted vertical line for milestones in Gantt 3.0</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Delete-grey-dotted-vertical-line-for-milestones-in-Gantt-3-0/m-p/5330579#M13235</link>
      <description>&lt;P&gt;Hey, I have the same issue. I have a large dataset and for every milestone the visual shows a dotted grey line. And there is no possibility to hide it. Is there any solution to this topic?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2026 13:49:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Delete-grey-dotted-vertical-line-for-milestones-in-Gantt-3-0/m-p/5330579#M13235</guid>
      <dc:creator>Liz99</dc:creator>
      <dc:date>2026-07-30T13:49:48Z</dc:date>
    </item>
    <item>
      <title>Deneb/vega on power bi</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Deneb-vega-on-power-bi/m-p/5327646#M13234</link>
      <description>&lt;P class=""&gt;Hello,&lt;/P&gt;&lt;P&gt;I am building a radar chart in Power BI using &lt;STRONG&gt;Deneb with Vega&lt;/STRONG&gt;. The chart displays seven indicators:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Precarious work rate&lt;/LI&gt;&lt;LI&gt;AHT stability&lt;/LI&gt;&lt;LI&gt;AHT entry rate&lt;/LI&gt;&lt;LI&gt;AHT consumption&lt;/LI&gt;&lt;LI&gt;AJT entry rate&lt;/LI&gt;&lt;LI&gt;AJT consumption&lt;/LI&gt;&lt;LI&gt;Window consumption&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I created a disconnected configuration table in DAX:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;t_radar_Indicateurs =&lt;BR /&gt;DATATABLE(&lt;BR /&gt;"Indicateur", STRING,&lt;BR /&gt;"Ordre", INTEGER,&lt;BR /&gt;"Seuil", DOUBLE,&lt;BR /&gt;"Sens", STRING,&lt;BR /&gt;{&lt;BR /&gt;{"Taux de précaires", 1, 0.10, "MAX"},&lt;BR /&gt;{"Stab AHT", 2, 0.85, "MIN"},&lt;BR /&gt;{"Saisie AHT", 3, 0.92, "MIN"},&lt;BR /&gt;{"Consommation AHT", 4, 0.75, "MIN"},&lt;BR /&gt;{"Taux de saisie AJT", 5, 0.92, "MIN"},&lt;BR /&gt;{"Consommation AJT", 6, 0.90, "MIN"},&lt;BR /&gt;{"Tx consommation Fenêtres", 7, 0.92, "MIN"}&lt;BR /&gt;}&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;This table contains four columns:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Indicateur&lt;/LI&gt;&lt;LI&gt;Ordre&lt;/LI&gt;&lt;LI&gt;Seuil&lt;/LI&gt;&lt;LI&gt;Sens&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The actual rate is returned by a separate measure using SELECTEDVALUE and SWITCH, depending on the selected indicator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Deneb dataset therefore receives fields such as:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Indicateur&lt;/LI&gt;&lt;LI&gt;Ordre&lt;/LI&gt;&lt;LI&gt;Sens&lt;/LI&gt;&lt;LI&gt;Taux&lt;/LI&gt;&lt;LI&gt;Objectifs&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;My Vega specification converts decimal percentage values such as 0.92 into 92, and keeps values already expressed as percentages.&lt;/P&gt;&lt;P&gt;The radial scale is defined as:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"name": "r",&lt;BR /&gt;"type": "linear",&lt;BR /&gt;"domain": [0, 100],&lt;BR /&gt;"range": [0, {"signal": "radius"}]&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have two main issues.&lt;/P&gt;&lt;H2&gt;1. One indicator displays 176.7%&lt;/H2&gt;&lt;P&gt;The “AHT entry rate” indicator is displayed as 176.7%.&lt;/P&gt;&lt;P&gt;In the Vega code, the displayed value comes directly from datum.TauxNum, so Vega does not seem to create this value by itself. It appears to be receiving either 1.767 or 176.7 from Power BI.&lt;/P&gt;&lt;P&gt;However, this indicator is supposed to represent a rate, and I am not sure whether this result is legitimate or caused by:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;duplicate rows in the numerator;&lt;/LI&gt;&lt;LI&gt;the use of COUNT instead of DISTINCTCOUNT;&lt;/LI&gt;&lt;LI&gt;different filter contexts between numerator and denominator;&lt;/LI&gt;&lt;LI&gt;an incorrect relationship in the Power BI model;&lt;/LI&gt;&lt;LI&gt;a measure removing filters with ALL or REMOVEFILTERS.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Because the Vega radial domain stops at 100, the 176.7% point is also drawn outside the radar.&lt;/P&gt;&lt;P&gt;What would be the best way to diagnose whether the issue comes from the DAX measure, the model relationships, or the Vega percentage conversion?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;H2&gt;2. Several radars show identical values for different entities&lt;/H2&gt;&lt;P&gt;I display several radar charts for different operational entities. Some of them show exactly the same values even though the entities should have different results.&lt;/P&gt;&lt;P&gt;The entity filter uses:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'t_pbi_dash'[entite_realisatrice]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;The indicator configuration table is disconnected, which I understand is normal because it is only used to select the appropriate measure through SWITCH.&lt;/P&gt;&lt;P&gt;My concern is that one or more measures selected by the SWITCH may not preserve the entity filter context.&lt;/P&gt;&lt;P&gt;The measures used include:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;_tx_precaire&lt;BR /&gt;_tx_stabiliteAHT_All&lt;BR /&gt;_tx_saisie_sur_AHT&lt;BR /&gt;_tx_pris_AHT&lt;BR /&gt;_tx_prises_sur_ajt&lt;BR /&gt;_Tx_fenêtres_prises&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;Could identical radars be caused by:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;missing relationships between the business tables and the entity table;&lt;/LI&gt;&lt;LI&gt;inactive or incorrect relationships;&lt;/LI&gt;&lt;LI&gt;measures using columns from different entity tables;&lt;/LI&gt;&lt;LI&gt;ALL, REMOVEFILTERS or similar functions inside the measures;&lt;/LI&gt;&lt;LI&gt;the disconnected radar table;&lt;/LI&gt;&lt;LI&gt;the way Deneb groups the dataset?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;What debugging measures or temporary table visual would you recommend to verify the filter context received by each measure for each entity?&lt;/P&gt;&lt;P&gt;I can provide the complete Vega specification and the DAX measures if needed.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2026 11:21:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Deneb-vega-on-power-bi/m-p/5327646#M13234</guid>
      <dc:creator>Serizawa</dc:creator>
      <dc:date>2026-07-29T11:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-select a slicer value based on another slicer's selection (button-style slicers)</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Auto-select-a-slicer-value-based-on-another-slicer-s-selection/m-p/5325135#M13233</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;No, this isn't possible with native Power BI slicers. They can filter available values but can't automatically select the only remaining option. Your best alternatives are bookmarks, a custom slicer visual, or handling the default in DAX.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Jul 2026 11:02:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Auto-select-a-slicer-value-based-on-another-slicer-s-selection/m-p/5325135#M13233</guid>
      <dc:creator>jasonmiller11tt</dc:creator>
      <dc:date>2026-07-28T11:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visuals' Community</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visuals-Community/m-p/5311523#M13232</link>
      <description>&lt;P&gt;I have the same issue! Going to email them with details of the bug.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2026 17:54:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visuals-Community/m-p/5311523#M13232</guid>
      <dc:creator>smabile</dc:creator>
      <dc:date>2026-07-21T17:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Keep X-axis showing all days (1–31) of current month when data only goes up to day 25?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Keep-X-axis-showing-all-days-1-31-of-current-month-when/m-p/5311364#M13231</link>
      <description>&lt;P&gt;Yes, the recommended approach is to use your &lt;STRONG&gt;Calendar (Date) table&lt;/STRONG&gt; for the X-axis rather than the date column from the fact table.&lt;/P&gt;&lt;P&gt;Here's how you can achieve the desired behavior:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Use the &lt;STRONG&gt;Calendar[Date]&lt;/STRONG&gt; column on the X-axis and ensure your Calendar table contains every day of the current month (1–31).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create a relationship between the Calendar table and your fact table.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;In the visual, enable &lt;STRONG&gt;Show items with no data&lt;/STRONG&gt; for the Date field so Power BI displays all dates from the Calendar table, even if there are no corresponding fact rows.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Set the X-axis &lt;STRONG&gt;Type&lt;/STRONG&gt; to &lt;STRONG&gt;Continuous&lt;/STRONG&gt; (or &lt;STRONG&gt;Categorical&lt;/STRONG&gt;, depending on your preferred appearance).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To prevent the line from dropping to zero after the 25th, make sure your measure returns &lt;STRONG&gt;BLANK()&lt;/STRONG&gt; rather than 0 when no data exists. For example:&lt;/P&gt;&lt;PRE&gt;Daily Customers :=
IF (
    ISBLANK ( SUM ( FactTable[Customers] ) ),
    BLANK(),
    SUM ( FactTable[Customers] )
)&lt;/PRE&gt;&lt;P&gt;When the measure returns &lt;STRONG&gt;BLANK()&lt;/STRONG&gt;, Power BI keeps the dates on the axis but doesn't plot values for those days, so the line naturally ends at the last available data point instead of continuing at zero.&lt;/P&gt;&lt;P&gt;This is the standard modeling approach and avoids having to include data from the previous month just to populate the axis.&lt;/P&gt;&lt;P&gt;For more information, see:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create and use Date tables in Power BI:&lt;/STRONG&gt; &lt;A href="https://learn.microsoft.com/power-bi/guidance/model-date-tables" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/power-bi/guidance/model-date-tables&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Show items with no data:&lt;/STRONG&gt; &lt;A href="https://learn.microsoft.com/power-bi/create-reports/desktop-show-items-no-data" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/power-bi/create-reports/desktop-show-items-no-data&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Line charts in Power BI:&lt;/STRONG&gt; &lt;A href="https://learn.microsoft.com/power-bi/visuals/power-bi-visualization-line-chart" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/power-bi/visuals/power-bi-visualization-line-chart&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H4&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; Helpful? Give a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; — keep the community growing.&lt;/STRONG&gt;&lt;/H4&gt;&lt;H4&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Solved your issue? Mark this as the Accepted Solution &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;&lt;/STRONG&gt;&lt;/H4&gt;&lt;H4&gt;&lt;STRONG&gt;Best regards,&lt;/STRONG&gt; &lt;STRONG&gt;Prince Singh | Data Science &amp;amp; Microsoft Fabric Enthusiast&lt;/STRONG&gt;&lt;/H4&gt;</description>
      <pubDate>Tue, 21 Jul 2026 16:36:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Keep-X-axis-showing-all-days-1-31-of-current-month-when/m-p/5311364#M13231</guid>
      <dc:creator>Prince0011</dc:creator>
      <dc:date>2026-07-21T16:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to Keep X-axis showing all days (1–31) of current month when data only goes up to day 25?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Keep-X-axis-showing-all-days-1-31-of-current-month-when/m-p/5308145#M13230</link>
      <description>&lt;P&gt;Use your &lt;A href="https://ttiktokio.id/" target="_self"&gt;Calendar table&lt;/A&gt; on the X-axis and enable Show items with no data. Keep the measure returning BLANK() For missing dates instead of 0, so the axis shows all days (1–31) while the line simply stops at the last available data point.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2026 09:20:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Keep-X-axis-showing-all-days-1-31-of-current-month-when/m-p/5308145#M13230</guid>
      <dc:creator>carter_gray705</dc:creator>
      <dc:date>2026-07-20T09:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to detect drill mode</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-detect-drill-mode/m-p/5308111#M13229</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="765530" data-lia-user-login="alexpokerface" class="lia-mention lia-mention-user"&gt;alexpokerface&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;As&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="397" data-lia-user-login="dm-p" class="lia-mention lia-mention-user"&gt;dm-p&lt;/a&gt;&amp;nbsp;said there is no simple straight forward method to check this. However, you can do try the following,&amp;nbsp;all inside&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;update():&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;dataView.metadata.dataRoles.drillableRoles&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;— a map of role name → the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;DrillType[]&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;currently available for it. When&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Drill Up&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is available for a role, the user has drilled down at least one level, which is the reliable "am I in a drilled-down state" signal:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;TypeScript&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;powerbi&lt;/SPAN&gt; &lt;SPAN&gt;from&lt;/SPAN&gt; &lt;SPAN&gt;"powerbi-visuals-api"&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;
&lt;SPAN&gt;import&lt;/SPAN&gt; &lt;SPAN&gt;DrillType&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;powerbi&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DrillType&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;

&lt;SPAN&gt;public&lt;/SPAN&gt; &lt;SPAN&gt;update&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;options&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;powerbi&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;extensibility&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;visual&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;VisualUpdateOptions&lt;/SPAN&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;
    &lt;SPAN&gt;const&lt;/SPAN&gt; &lt;SPAN&gt;dataRoles&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;options&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;dataViews&lt;/SPAN&gt;&lt;SPAN&gt;?.[&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;]?.&lt;/SPAN&gt;&lt;SPAN&gt;metadata&lt;/SPAN&gt;&lt;SPAN&gt;?.&lt;/SPAN&gt;&lt;SPAN&gt;dataRoles&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;
    &lt;SPAN&gt;const&lt;/SPAN&gt; &lt;SPAN&gt;available&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dataRoles&lt;/SPAN&gt;&lt;SPAN&gt;?.&lt;/SPAN&gt;&lt;SPAN&gt;drillableRoles&lt;/SPAN&gt;&lt;SPAN&gt;?.[&lt;/SPAN&gt;&lt;SPAN&gt;"category"&lt;/SPAN&gt;&lt;SPAN&gt;] &lt;/SPAN&gt;&lt;SPAN&gt;??&lt;/SPAN&gt;&lt;SPAN&gt; []; &lt;/SPAN&gt;&lt;SPAN&gt;// role name from capabilities "drilldown".roles&lt;/SPAN&gt;

    &lt;SPAN&gt;const&lt;/SPAN&gt; &lt;SPAN&gt;isDrilledDown&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;available&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;indexOf&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DrillType&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Up&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;;   &lt;/SPAN&gt;&lt;SPAN&gt;// Drill Up exists =&amp;gt; below the top level&lt;/SPAN&gt;
    &lt;SPAN&gt;const&lt;/SPAN&gt; &lt;SPAN&gt;canDrillDown&lt;/SPAN&gt;  &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;available&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;indexOf&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DrillType&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Down&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;=&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;; &lt;/SPAN&gt;&lt;SPAN&gt;// more levels below&lt;/SPAN&gt;
    &lt;SPAN&gt;const&lt;/SPAN&gt; &lt;SPAN&gt;drillDisabled&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dataRoles&lt;/SPAN&gt;&lt;SPAN&gt;?.&lt;/SPAN&gt;&lt;SPAN&gt;isDrillDisabled&lt;/SPAN&gt; &lt;SPAN&gt;===&lt;/SPAN&gt; &lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;;    &lt;/SPAN&gt;&lt;SPAN&gt;// drilling currently turned off&lt;/SPAN&gt;
&lt;SPAN&gt;}&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;2. &lt;/STRONG&gt;After any drill, Power BI just calls&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;update()&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;again with a new DataView. Read the level from the data — categorical: the number of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;categorical.categories&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and each&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;categories[i].source.displayName&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(e.g., Year → Quarter → Month); matrix: the depth of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;matrix.rows.levels&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and each node's&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;level. Note the category value&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;type&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;can change per level (Date at the top, string lower down), so guard with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;categories[i].source.type&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;before parsing.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. To drive drilling from your own UX&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(e.g., double-click to drill down), call&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;host.drill(args)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(API 4.7.0+), and optionally&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;host.setCanDrill(true/false)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(5.7.0+) to enable/disable it at runtime.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Asaf.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;References&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/drilldown-api" target="_blank" rel="noopener noreferrer"&gt;The Drilldown API in Power BI visuals&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;— documents the exact&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;drillableRoles['...'].indexOf(powerbi.DrillType.Down)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;pattern and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;host.drill()&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/drill-down-support" target="_blank" rel="noopener noreferrer"&gt;Add drill-down support in Power BI visuals&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/dynamic-drill-down" target="_blank" rel="noopener noreferrer"&gt;The dynamic drill-down API in Power BI visuals&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 20 Jul 2026 09:08:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-detect-drill-mode/m-p/5308111#M13229</guid>
      <dc:creator>asafcohen</dc:creator>
      <dc:date>2026-07-20T09:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Add Synoptic Panel by OKVIZ (Version 2.5.7.0)</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cannot-Add-Synoptic-Panel-by-OKVIZ-Version-2-5-7-0/m-p/5307996#M13228</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1662282" data-lia-user-login="Roya-Daemi" class="lia-mention lia-mention-user"&gt;Roya-Daemi&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;Same error on a brand new PBIX is a useful clue honestly, rules out the report, so it's Desktop, the visual itself, or something local on your machine.&lt;/P&gt;
&lt;P class=""&gt;Looks like PBI's already got 2.5.7.0 registered somewhere and tries updating over it, and that's where things go wrong.&lt;/P&gt;
&lt;P class=""&gt;Some things worth checking to figure this out:&lt;/P&gt;
&lt;UL class="" dir="auto"&gt;
&lt;LI class=""&gt;What Desktop version are you on?&lt;/LI&gt;
&lt;LI class=""&gt;Installing through AppSource, or did you import a .pbiviz file directly?&lt;/LI&gt;
&lt;LI class=""&gt;Personal setup or a work/managed tenant?&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If it's managed, worth reaching out to your admin, ask if they've already pushed OKVIZ's visual org-wide. That's caused this exact kind of conflict before.&lt;/P&gt;
&lt;P class=""&gt;Also just try updating Desktop to whatever's current, restart it, then import again, quick thing to rule out.&lt;/P&gt;
&lt;P class=""&gt;Still broken after that? &lt;BR /&gt;I will recommend email OKVIZ directly and ask if 2.5.7.0 has any known issues, especially with whatever Desktop build you're running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2026 08:12:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cannot-Add-Synoptic-Panel-by-OKVIZ-Version-2-5-7-0/m-p/5307996#M13228</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2026-07-20T08:12:10Z</dc:date>
    </item>
  </channel>
</rss>

