<?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: Custom Object Drowdown in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/460679#M14180</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your answer but I'm not sure to understand this method.&lt;/P&gt;&lt;P&gt;Because once you've done writing all the export variable, all you have is a string const variable exported. I don't understand how it can be transformed in an image for my dropdown parameter...&lt;/P&gt;&lt;P&gt;Do I have to redefine my variables ? If so, how ?&lt;/P&gt;&lt;P&gt;Sorry to bother you again with this,&amp;nbsp;but could you&amp;nbsp;be more explicit please ?&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank again !&lt;/P&gt;</description>
    <pubDate>Thu, 12 Jul 2018 07:53:30 GMT</pubDate>
    <dc:creator>FR5702</dc:creator>
    <dc:date>2018-07-12T07:53:30Z</dc:date>
    <item>
      <title>Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/143325#M4933</link>
      <description>&lt;P&gt;I'm creating a custom visual. I want to include a dropdown object on the format pane that I can fill with options. I know it's possible because it's in the standard KPI visual, but I can't find any documentation besides primitive types and fills. Any help on how to construct the capabilities.json and enumeration?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2017 21:07:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/143325#M4933</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-15T21:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/144324#M4956</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may refer to&amp;nbsp;&lt;A href="https://github.com/Microsoft/powerbi-visuals-dualkpi/blob/e4349a0e56f9a0ba02892cf0aef44e9e0ff5ff66/capabilities.json" target="_self"&gt;capabilities.json&lt;/A&gt; of &lt;A href="https://app.powerbi.com/visuals/show/PBI_CV_3C80B1F2_09AF_4123_8E99_C3CBC46B23E0" target="_self"&gt;Dual KPI&lt;/A&gt;&amp;nbsp;and view its source code at &lt;A href="https://github.com/Microsoft/powerbi-visuals-dualkpi" target="_blank"&gt;https://github.com/Microsoft/powerbi-visuals-dualkpi&lt;/A&gt;. As for the spec, see &lt;A href="https://github.com/Microsoft/PowerBI-visuals-tools/blob/164f80e7e269f56dbbfd8009e4d860c7c03b4f07/templates/visuals/.api/v1.6.0/schema.capabilities.json" target="_blank"&gt;https://github.com/Microsoft/PowerBI-visuals-tools/blob/164f80e7e269f56dbbfd8009e4d860c7c03b4f07/templates/visuals/.api/v1.6.0/schema.capabilities.json&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2017 10:20:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/144324#M4956</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2017-03-17T10:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/144581#M4970</link>
      <description>&lt;P&gt;Awesome thanks! That's a great resource.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll put the code here for others to see an example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Capabilities.json:&lt;/P&gt;&lt;PRE&gt;"displayUnits": {
                    "displayName": "Display Units",
                    "type": {
                        "enumeration": [{
                            "value": "none",
                            "displayName": "None"
                        }, {
                            "value": "thousands",
                            "displayName": "Thousands"
                        }, {
                            "value": "millions",
                            "displayName": "Millions"
                        }, {
                            "value": "billions",
                            "displayName": "Billions"
                        }]
                    }
                }&lt;/PRE&gt;&lt;P&gt;And the enumeration is the same as you would get a string.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2017 17:22:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/144581#M4970</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-17T17:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/144928#M4977</link>
      <description>&lt;P&gt;Can you put up enumeration code as well, I tried and it is not working properly&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2017 14:07:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/144928#M4977</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-19T14:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/145403#M4991</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your problem has been resolved,&amp;nbsp;please help mark answer. Your contribution is highly appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 10:46:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/145403#M4991</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2017-03-20T10:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/146422#M5012</link>
      <description>&lt;P&gt;It's just like any string:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;public enumerateObjectInstances(options: EnumerateVisualObjectInstancesOptions): VisualObjectInstanceEnumeration {
    let objectName = options.objectName;
    let objectEnumeration: VisualObjectInstance[] = [];

    switch(objectName) {
        case 'kpi': 
            objectEnumeration.push({
                objectName: objectName,
                properties: {
                    displayUnits: this.kpiSettings.kpi.displayUnits
                },
                selector: null
            });
            break;
    };

    return objectEnumeration;
}&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Mar 2017 19:36:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/146422#M5012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-21T19:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/283513#M8419</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, the possible options are hard-coded in capabilities.json.&lt;/P&gt;&lt;P&gt;Is there a way to dynamically specify the&amp;nbsp;list of possible values?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 06:44:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/283513#M8419</guid>
      <dc:creator>PBIcustomizer</dc:creator>
      <dc:date>2017-10-20T06:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/328213#M9691</link>
      <description>&lt;P&gt;I want to show the list of fonts available. Is there an easy way to do it instead of&amp;nbsp;typing all the fonts available&amp;nbsp;for the dropdown.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2017 13:29:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/328213#M9691</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2017-12-22T13:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/328853#M9723</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/44342"&gt;@PBIcustomizer&lt;/a&gt;&amp;nbsp;There's no way to use dynamic drop-downs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/50316"&gt;@satishr&lt;/a&gt;&amp;nbsp;No, there isn't. You should specify all of font for the dropdown.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ignat Vilesov,&lt;/P&gt;&lt;P&gt;Software Engineer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Dec 2017 13:59:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/328853#M9723</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-12-25T13:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329345#M9739</link>
      <description>&lt;P&gt;Thanks for the reply v-viig. Can you let me know how the default Font family dropdown for Title works? It lists few fonts in its drop-down and each font value is displayed in its own font.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2017 06:51:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329345#M9739</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2017-12-27T06:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329364#M9741</link>
      <description>&lt;P&gt;Font Family dropdown is actually a common dropdown that can be&amp;nbsp;implemented by using &lt;A href="https://github.com/Microsoft/PowerBI-visuals-tools/blob/ef1c1748280d760fb1571cf47fcfc07ec82fa2d4/templates/visuals/.api/v1.10.0/schema.capabilities.json#L818" target="_blank"&gt;enumeration&lt;/A&gt; property (&lt;A href="https://github.com/Microsoft/PowerBI-visuals-Tornado/blob/a1a6d1be5f7a77d47bcc7428ad907b33925f7d7c/capabilities.json#L184" target="_blank"&gt;example&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;After that, you should apply a proper Font Family to DOM element that you need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if you have any further questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ignat Vilesov,&lt;/P&gt;&lt;P&gt;Software Engineer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2017 07:08:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329364#M9741</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-12-27T07:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329365#M9742</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;&amp;nbsp;Got it. Thank you.&amp;nbsp;Can you provide me the actual font family enumeration with the&amp;nbsp;values? I don't want to type each font name and later test each of them for any errors. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 06:09:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329365#M9742</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2017-12-28T06:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329875#M9769</link>
      <description>&lt;P&gt;Power BI doesn't provide any fonts for&amp;nbsp;custom visuals.&lt;/P&gt;&lt;P&gt;You should include fonts that you want&amp;nbsp;using CSS and list font in the enumeration that your visual supports.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ignat Vilesov,&lt;/P&gt;&lt;P&gt;Software Engineer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2017 07:57:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/329875#M9769</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-12-28T07:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/458805#M14129</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I read your examples and for a "classic" enumeration with string value, I understand how it's done and I successfully create one for my custom chart. But now, I'm stuck with another problem.&lt;/P&gt;&lt;P&gt;I try to create an enumeration with shapes like this one (from the vanilla line chart):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="capture legend.PNG" style="width: 184px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/105729iBC971FDE8FD2A388/image-size/large?v=v2&amp;amp;px=999" role="button" title="capture legend.PNG" alt="capture legend.PNG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Datapoint's shape is defined by a SVG string and a path. So I tried to make something like this :&lt;/P&gt;&lt;PRE&gt;"shapes": {
            "displayName": "Shapes",
            "properties": {
                "MarkerShape": {
                    "displayName": "Marker shape",
                    "type": {
                        "enumeration": [
                            {
                                "displayName": "M490,474.459H0L245.009,15.541L490,474.459z",
                                "value": "M490,474.459H0L245.009,15.541L490,474.459z"
                            }
                        ]
                    }
                }
            }
        }&lt;/PRE&gt;&lt;P&gt;As my value is a string content, it works but the display name is also a string, how can I have the same result as the vanilla chart ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I searched for any web examples but can't find any.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some tips/advices/examples to share ? I'll greatly appreciate your help !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jul 2018 13:03:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/458805#M14129</guid>
      <dc:creator>FR5702</dc:creator>
      <dc:date>2018-07-10T13:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/459491#M14152</link>
      <description>&lt;P&gt;It seems property must be called as "markerShape" and its type must be "enumeration".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This enumeration must specify the following values:&lt;/P&gt;
&lt;PRE&gt;        export const circle: string = 'circle';
        export const square: string = 'square';
        export const diamond: string = 'diamond';
        export const triangle: string = 'triangle';
        export const x: string = 'x';
        export const shortDash: string = 'shortDash';
        export const longDash: string = 'longDash';
        export const plus: string = 'plus';
        export const none: string = 'none';&lt;/PRE&gt;
&lt;P&gt;Not sure if it will work well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;pbicvsupport@microsoft.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:25:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/459491#M14152</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-07-11T07:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/460679#M14180</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your answer but I'm not sure to understand this method.&lt;/P&gt;&lt;P&gt;Because once you've done writing all the export variable, all you have is a string const variable exported. I don't understand how it can be transformed in an image for my dropdown parameter...&lt;/P&gt;&lt;P&gt;Do I have to redefine my variables ? If so, how ?&lt;/P&gt;&lt;P&gt;Sorry to bother you again with this,&amp;nbsp;but could you&amp;nbsp;be more explicit please ?&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank again !&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:53:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/460679#M14180</guid>
      <dc:creator>FR5702</dc:creator>
      <dc:date>2018-07-12T07:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Object Drowdown</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/461601#M14203</link>
      <description>&lt;P&gt;This is what you need to define in capabilities.json:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;"markerShape": {
    "displayName": "enum",
    "type": {
        "enumeration": [
            {
                "value": "circle",
                "displayName": "Circle"
            },
            {
                "value": "square",
                "displayName": "square"
            },
            {
                "value": "diamond",
                "displayName": "diamond"
            },
            {
                "value": "triangle",
                "displayName": "triangle"
            },
            {
                "value": "x",
                "displayName": "x"
            },
            {
                "value": "shortDash",
                "displayName": "shortDash"
            },
            {
                "value": "longDash",
                "displayName": "longDash"
            },
            {
                "value": "plus",
                "displayName": "plus"
            },
            {
                "value": "none",
                "displayName": "none"
            }
        ]
    }
}&lt;/PRE&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;pbicvsupport@microsoft.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 06:17:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Object-Drowdown/m-p/461601#M14203</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-07-13T06:17:46Z</dc:date>
    </item>
  </channel>
</rss>

