<?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 Hyperlinking bar graph in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Hyperlinking-bar-graph/m-p/2962268#M40253</link>
    <description>&lt;P&gt;I want a bar graph in which If I press on a bar it should take me to a website, and the URL to the website is dynamic. The endpoint of URL changes based on the selected bar in the bar graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a link to a website for which I was trying this : &lt;EM&gt;&lt;A href="https://www.weather-forecast.com/countries" target="_blank" rel="noopener"&gt;https://www.weather-forecast.com/countries&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;in this there are country wise temperature given which I am displaying in bar graph. whenever a bar is pressed, it should go to that countries weather report: &lt;EM&gt;&lt;A href="https://www.weather-forecast.com/locations/" target="_blank" rel="noopener"&gt;https://www.weather-forecast.com/locations/&lt;/A&gt;&lt;/EM&gt;&lt;STRONG&gt;&lt;EM&gt;{Country_name}&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;/forecasts/latest.&amp;nbsp; &lt;/EM&gt;Here Country_name will be replaced by the selected Bar name from Bar graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to achieve this functionality?&lt;/P&gt;&lt;P&gt;I know this can be achieved by table or matrix. Is there any other way I can implement this functionality?&lt;/P&gt;</description>
    <pubDate>Mon, 12 Dec 2022 10:59:44 GMT</pubDate>
    <dc:creator>pruthviraj-h_2</dc:creator>
    <dc:date>2022-12-12T10:59:44Z</dc:date>
    <item>
      <title>Hyperlinking bar graph</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hyperlinking-bar-graph/m-p/2962268#M40253</link>
      <description>&lt;P&gt;I want a bar graph in which If I press on a bar it should take me to a website, and the URL to the website is dynamic. The endpoint of URL changes based on the selected bar in the bar graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a link to a website for which I was trying this : &lt;EM&gt;&lt;A href="https://www.weather-forecast.com/countries" target="_blank" rel="noopener"&gt;https://www.weather-forecast.com/countries&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;in this there are country wise temperature given which I am displaying in bar graph. whenever a bar is pressed, it should go to that countries weather report: &lt;EM&gt;&lt;A href="https://www.weather-forecast.com/locations/" target="_blank" rel="noopener"&gt;https://www.weather-forecast.com/locations/&lt;/A&gt;&lt;/EM&gt;&lt;STRONG&gt;&lt;EM&gt;{Country_name}&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;/forecasts/latest.&amp;nbsp; &lt;/EM&gt;Here Country_name will be replaced by the selected Bar name from Bar graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to achieve this functionality?&lt;/P&gt;&lt;P&gt;I know this can be achieved by table or matrix. Is there any other way I can implement this functionality?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 10:59:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hyperlinking-bar-graph/m-p/2962268#M40253</guid>
      <dc:creator>pruthviraj-h_2</dc:creator>
      <dc:date>2022-12-12T10:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlinking bar graph</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Hyperlinking-bar-graph/m-p/2964212#M40270</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/485248"&gt;@pruthviraj-h_2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The bar chart does not support this feature, you can do this by adding a button:&lt;/P&gt;
&lt;P&gt;First create a measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
var _a = SELECTEDVALUE('Table'[Capital City])
var _b = "https://www.weather-forecast.com/locations/"&amp;amp;_a&amp;amp;"/forecasts/latest"
return _b&lt;/LI-CODE&gt;
&lt;P&gt;Then create a button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vjianbolimsft_0-1670911544108.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/839725i4CC35B1148E7B538/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vjianbolimsft_0-1670911544108.png" alt="vjianbolimsft_0-1670911544108.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vjianbolimsft_1-1670911628719.gif" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/839727iFB6E9781706E7DAC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vjianbolimsft_1-1670911628719.gif" alt="vjianbolimsft_1-1670911628719.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2022 06:07:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Hyperlinking-bar-graph/m-p/2964212#M40270</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-12-13T06:07:29Z</dc:date>
    </item>
  </channel>
</rss>

