<?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: Circle Card showing two field values in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1013624#M23001</link>
    <description>&lt;P&gt;I really appreciate your help!&amp;nbsp; This is what i got in the capabilities.json&amp;nbsp;and in the Visual.ts i have the below in the update method.&amp;nbsp; &amp;nbsp;Is it really mandatory to have a grouping if we end up multiple measures? Actually i just want to show the normal field value not really a measure from the data model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;"dataRoles": [
        {
            "displayName": "Station ID",
            "name": "stationID",
            "kind": "GroupingOrMeasure"
        },
        {
            "displayName": "Throughput",
            "name": "throughput",
            "kind": "Measure"
        },
        {
            "displayName": "Status",
            "name": "status",
            "kind": "Measure"
        },
        {
            "displayName": "Color",
            "name": "color",
            "kind": "Measure"
        }

    ],&lt;/LI-CODE&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;LI-CODE lang="javascript"&gt;    this.circle
            .style("fill", categoricalDataView.values[2].values[0] as string)
            .style("fill-opacity", 1)
            .style("stroke", "black")
            .style("stroke-width", this.visualSettings.circle.circleThickness)
            .attr("r", radius)
            .attr("cx", width/2)
            .attr("cy", height/2);

        let fontSizeValue: number = Math.min(width, height) / 5;

        this.stationText
            .text(categoricalDataView.categories[0].values[0] as string)
            .attr("x", width/2)
            .attr("y", height/10)
            .attr("dy", "0.35em")
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue / 2 + "px");

        this.stationValue
            .text(categoricalDataView.categories[0].values[0] as string)
            .attr("x", "50%")
            .attr("y", "35%")
            .attr("dy", "0.35em")
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue / 2.5 + "px");

        this.throughputValue
            .text(categoricalDataView.values[0].values[0] as string)
            .attr("x", width/2)
            .attr("y", height/2)
            .attr("dy", "0.35em")
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue + "px");

        this.statusValue
            .text(categoricalDataView.values[1].values[0] as string)
            .attr("x", "50%")
            .attr("y", "55%")
            .attr("dy", fontSizeValue / 1.2)
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue / 2.5 + "px");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Apr 2020 20:49:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-04-07T20:49:01Z</dc:date>
    <item>
      <title>Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1011295#M22987</link>
      <description>&lt;P&gt;I just started developing a custom visual, a circle card to show two field values.&amp;nbsp; Both fields are coming from the same data source (.csv) file. May i know the best approach to implement the dataRoles in the capabilities.json?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 02:46:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1011295#M22987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-07T02:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1013583#M23000</link>
      <description>&lt;P&gt;Hi @Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;If you're using the circle card tutorial as a reference point, this uses the &lt;FONT face="courier new,courier"&gt;single dataViewMapping&lt;/FONT&gt;, and this only ever supports one &lt;FONT face="courier new,courier"&gt;dataRole&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;To allow more values, you'll indeed need to add a new &lt;FONT face="courier new,courier"&gt;dataRole&lt;/FONT&gt;, but also change your &lt;FONT face="courier new,courier"&gt;dataViewMapping&lt;/FONT&gt; to something else, likely &lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/visuals/dataview-mappings#categorical-data-mapping" target="_self"&gt;&lt;FONT face="courier new,courier"&gt;categorical&lt;/FONT&gt; &lt;/A&gt;and map the values accordingly.&lt;/P&gt;
&lt;P&gt;I have set up something similar in the past, with a tutorial, which does show how to convert the &lt;FONT face="courier new,courier"&gt;dataViewMapping&lt;/FONT&gt; across and might be something you can use to refer to. It's a little out of date, as the SDK has changed since I wrote and in this case, so you won't be able to lift and shift exaclty as coded, and the field is used for a tooltip but the premise is the same.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://github.com/dm-p/difinity-2019-custom-visuals" target="_self"&gt;The code repository is here&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dm-p/difinity-2019-custom-visuals/blob/master/presentation/Power%20BI%20Custom%20Visuals%20-%20Getting%20Beyond%20the%20Boilerplate%20-%20Difinity%202019-02-20.pdf" target="_self"&gt;The slide deck is here&lt;/A&gt; - the conversion is mentioned in Objective 5, and the following commits show the changes:
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://github.com/dm-p/difinity-2019-custom-visuals/commit/b803c9433d7a100e4d5e18945182872fe36ffa7f" target="_self"&gt;capabilities.json - changing &lt;FONT face="courier new,courier"&gt;dataRoles&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;dataViewMapping&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dm-p/difinity-2019-custom-visuals/commit/91a450a282ea4728da2ee21fbc139c628b76081a" target="_self"&gt;visual.ts - changing how the &lt;FONT face="courier new,courier"&gt;dataView&lt;/FONT&gt; is mapped&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Hopefully this will help you get started. Good luck!&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 20:22:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1013583#M23000</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2020-04-07T20:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1013624#M23001</link>
      <description>&lt;P&gt;I really appreciate your help!&amp;nbsp; This is what i got in the capabilities.json&amp;nbsp;and in the Visual.ts i have the below in the update method.&amp;nbsp; &amp;nbsp;Is it really mandatory to have a grouping if we end up multiple measures? Actually i just want to show the normal field value not really a measure from the data model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;"dataRoles": [
        {
            "displayName": "Station ID",
            "name": "stationID",
            "kind": "GroupingOrMeasure"
        },
        {
            "displayName": "Throughput",
            "name": "throughput",
            "kind": "Measure"
        },
        {
            "displayName": "Status",
            "name": "status",
            "kind": "Measure"
        },
        {
            "displayName": "Color",
            "name": "color",
            "kind": "Measure"
        }

    ],&lt;/LI-CODE&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;LI-CODE lang="javascript"&gt;    this.circle
            .style("fill", categoricalDataView.values[2].values[0] as string)
            .style("fill-opacity", 1)
            .style("stroke", "black")
            .style("stroke-width", this.visualSettings.circle.circleThickness)
            .attr("r", radius)
            .attr("cx", width/2)
            .attr("cy", height/2);

        let fontSizeValue: number = Math.min(width, height) / 5;

        this.stationText
            .text(categoricalDataView.categories[0].values[0] as string)
            .attr("x", width/2)
            .attr("y", height/10)
            .attr("dy", "0.35em")
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue / 2 + "px");

        this.stationValue
            .text(categoricalDataView.categories[0].values[0] as string)
            .attr("x", "50%")
            .attr("y", "35%")
            .attr("dy", "0.35em")
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue / 2.5 + "px");

        this.throughputValue
            .text(categoricalDataView.values[0].values[0] as string)
            .attr("x", width/2)
            .attr("y", height/2)
            .attr("dy", "0.35em")
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue + "px");

        this.statusValue
            .text(categoricalDataView.values[1].values[0] as string)
            .attr("x", "50%")
            .attr("y", "55%")
            .attr("dy", fontSizeValue / 1.2)
            .attr("text-anchor", "middle")
            .style("font-size", fontSizeValue / 2.5 + "px");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 20:49:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1013624#M23001</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-07T20:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1016078#M23011</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Glad you found it useful! I'm unfortunately not 100% clear on your follow-up question, so I'll take a broad approach and maybe the answer is in there somewhere - apologies in advance if I'm telling you stuff you already know &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;kind&lt;/STRONG&gt; &lt;/FONT&gt;property really specifies what options are available to the end-user when they see the field in the properties pane, and how it can be mapped later on.&lt;/P&gt;
&lt;P&gt;Let's say I have a textual field, called&amp;nbsp;&lt;STRONG&gt;City&lt;/STRONG&gt; (it's one I have on hand in my data model at present).&lt;/P&gt;
&lt;P&gt;Specifying &lt;FONT face="courier new,courier"&gt;Grouping&lt;/FONT&gt; (either on its own or as &lt;FONT face="courier new,courier"&gt;GroupingOrMeasure&lt;/FONT&gt;) will allow the user to specify whether to summarise the value or not in the properties pane, e.g.:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 344px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/254333iBD4D7B9B48B48031/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;There is some expectation that you'll need to handle this somehow in your &lt;FONT face="courier new,courier"&gt;dataViewMapping&lt;/FONT&gt; also.&lt;/P&gt;
&lt;P&gt;Specifying &lt;FONT face="courier new,courier"&gt;Measure&lt;/FONT&gt;&amp;nbsp;for &lt;FONT face="courier new,courier"&gt;kind&lt;/FONT&gt; is a way of telling the properties pane that this is purely an aggregated value, so only offer-up the options to the end-user that make sense here. For the same textual field we now don't see the option to summarise, e.g.:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 293px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/254334i955D08E818B1BD69/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The doc is not 100% correct on this, and &lt;A href="https://docs.microsoft.com/en-nz/power-bi/developer/visuals/capabilities#define-the-data-fields-that-your-visual-expects-dataroles" target="_self"&gt;specifies &lt;FONT face="courier new,courier"&gt;Measure&lt;/FONT&gt; is for numeric values&lt;/A&gt;. I might have to figure out how to submit corrections to see if this can be cleared up.&lt;/P&gt;
&lt;P&gt;So with that in mind, don't think of &lt;FONT face="courier new,courier"&gt;Measure&lt;/FONT&gt; as a data model measure, more that &lt;EM&gt;"this data role should aggregate however it can, based on its type"&lt;/EM&gt;. For numeric values, you'll get the standard numeric ones such as min, max etc.; for textual fields we get the ones above. This is how the circle card tutorial is set up, and also how the core card visual works when you add textual fields to them.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;My Approach for your Visual&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;When you want to use multiple data roles, this is where we can get creative with the &lt;FONT face="courier new,courier"&gt;categorical dataViewMapping&lt;/FONT&gt;. We don't have to specify a &lt;FONT face="courier new,courier"&gt;categories&lt;/FONT&gt; grouping as long as there's a valid binding to &lt;FONT face="courier new,courier"&gt;values&lt;/FONT&gt;, so I would firstly revise the &lt;FONT face="courier new,courier"&gt;dataRoles&lt;/FONT&gt; for your case as follows:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;"dataRoles": [
    {
        "displayName": "Station ID",
        "name": "stationID",
        "kind": "Measure"
    },
    {
        "displayName": "Throughput",
        "name": "throughput",
        "kind": "Measure"
    },
    {
        "displayName": "Status",
        "name": "status",
        "kind": "Measure"
    },
    {
        "displayName": "Color",
        "name": "color",
        "kind": "Measure"
    }
],&lt;/LI-CODE&gt;
&lt;P&gt;I'd then set up my dataViewMappings as follows:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;"dataViewMappings": [
    {
        "categorical": {
            "values": {
                "select": [
                    {
                        "bind": {
                            "to": "stationID"
                        }
                    },
                    {
                        "bind": {
                            "to": "throughput"
                        }
                    },
                    {
                        "bind": {
                            "to": "status"
                        }
                    },
                    {
                        "bind": {
                            "to": "color"
                        }
                    }
                ]
            }
        }
    }
]&lt;/LI-CODE&gt;
&lt;P&gt;Note that I'm not using a &lt;FONT face="courier new,courier"&gt;categories&lt;/FONT&gt; key, just a &lt;FONT face="courier new,courier"&gt;values&lt;/FONT&gt; one (as I don't need to be doing any grouping for a "single" data point).&lt;/P&gt;
&lt;P&gt;Now, when I refresh my visual and add my data, the &lt;FONT face="courier new,courier"&gt;dataView&lt;/FONT&gt; will now resolve as follows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 301px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/254339i03DA3115D76C08BB/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I'm just using whatever data I have in my model but yours should resolve similarly. Notice that everything is consolidated in the &lt;FONT face="courier new,courier"&gt;values&lt;/FONT&gt; object.&lt;/P&gt;
&lt;P&gt;In terms of how you then access in your code thereafter, you'd swap out any instances of where you're referring to the &lt;FONT face="courier new,courier"&gt;categories&lt;/FONT&gt; object (e,g, for &lt;FONT face="courier new,courier"&gt;stationText&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;stationValue&lt;/FONT&gt;) and map them to the appropriate entry in the &lt;FONT face="courier new,courier"&gt;values&lt;/FONT&gt; object array instead.&lt;/P&gt;
&lt;P&gt;Let me know if there's anything in here that doesn't make sense and I'll do my best to provide more targeted feedback &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 20:41:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1016078#M23011</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2020-04-08T20:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1016360#M23014</link>
      <description>&lt;P&gt;Wow! Great Help! You covered it in very detailed way. Much helpful.&amp;nbsp; Thank you for the help and support.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 00:48:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1016360#M23014</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-09T00:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1017079#M23017</link>
      <description>You're very welcome, and so glad to hear this helped you out &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;&lt;BR /&gt;Daniel</description>
      <pubDate>Thu, 09 Apr 2020 08:11:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1017079#M23017</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2020-04-09T08:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1018521#M23029</link>
      <description>&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;unrelated question.&amp;nbsp; Iam enhancing the circle card to have the drillthrough option.&amp;nbsp; To enable drillthrough i need to make one of the field as Grouping (eg. StationID). I did.&amp;nbsp; and to get the context menu with the drill through i added the below code as per microsoft article&amp;nbsp;&lt;A href="https://powerbi.microsoft.com/en-us/blog/power-bi-developer-community-november-update-2018/" target="_blank" rel="noopener"&gt;https://powerbi.microsoft.com/en-us/blog/power-bi-developer-community-november-update-2018/&lt;/A&gt;.&amp;nbsp; &amp;nbsp;I got the context menu but without drillthrough option. Would you able to help me in getting the drill through option?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;    public update(options: VisualUpdateOptions) {
        //...
        //handle context menu
        this.svg.on('contextmenu', () =&amp;gt; {
            const mouseEvent: MouseEvent = d3.event as MouseEvent;
            const eventTarget: EventTarget = mouseEvent.target;
            let dataPoint = d3.select(eventTarget).datum();
            this.selectionManager.showContextMenu(dataPoint? dataPoint.selectionId : {}, {
                x: mouseEvent.clientX,
                y: mouseEvent.clientY
            });
            mouseEvent.preventDefault();
        });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="circlecard.png" style="width: 234px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/254798i0B8F76E349B3A947/image-size/large?v=v2&amp;amp;px=999" role="button" title="circlecard.png" alt="circlecard.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 23:58:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1018521#M23029</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-09T23:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1018569#M23030</link>
      <description>&lt;P&gt;Hi @Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I'd advise creating new threads for unrelated issues as it helps other people with the same challenge to find these posts more quickly &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I'll see if I can provide a quick overview on here though and this should help you get moving.&lt;/P&gt;
&lt;P&gt;For drillthrough to appear in the context menu, you'll need two things:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;A &lt;A href="https://docs.microsoft.com/en-us/power-bi/desktop-drillthrough#set-up-the-drill-through-destination-page" target="_self"&gt;drillthrough page with the same fields&lt;/A&gt; that you're using in the visual (which I presume that you've already done)&lt;/LI&gt;
&lt;LI&gt;A &lt;FONT face="courier new,courier"&gt;selectionId&lt;/FONT&gt; bound to the element's &lt;FONT face="courier new,courier"&gt;datum&lt;/FONT&gt; that utilises these, so that the &lt;FONT face="courier new,courier"&gt;selectionManager&lt;/FONT&gt; knows there is a link to the fields on the drillthrough page&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;I see that you have a &lt;FONT face="courier new,courier"&gt;selectionId&lt;/FONT&gt; in your code, but as I can't see how you've built it, I can only speculate as to how this is set up. If you've not reviewed the &lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/visuals/selection-api" target="_self"&gt;following documentation on selection&lt;/A&gt;, I'd start here, to ensure that you're building your &lt;FONT face="courier new,courier"&gt;selectionId&lt;/FONT&gt; correctly.&lt;/P&gt;
&lt;P&gt;If you're still stuck after trying the above, it's probably better for me to take a look at your code when I can find a chunk of time.&lt;/P&gt;
&lt;P&gt;Given where you're at, we'll need to look at your capabilities, view model, DOM and visual logic to see how everything ties together, so ideally, if you have the project in a shareable location such as a GitHub repo, that'd be a great help in getting to the root of the problem quickly. If you don't want to share publicly, feel free to PM me this link.&lt;/P&gt;
&lt;P&gt;Good luck,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 00:58:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1018569#M23030</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2020-04-10T00:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Circle Card showing two field values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1020030#M23047</link>
      <description>&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;Sorry for continuing on this same thread.&amp;nbsp; Thanks for your inputs. yes i did the drillthrough page with the same fields that iam using on the visual.&amp;nbsp; Let me check and fix the selectionId as you said.&amp;nbsp; Thanks again and I really appreciate your efforts helping me with the inputs.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 17:00:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Circle-Card-showing-two-field-values/m-p/1020030#M23047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-10T17:00:55Z</dc:date>
    </item>
  </channel>
</rss>

