<?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: Power BI Custom Visual - Objects and Properties types in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/738939#M2356</link>
    <description>&lt;P&gt;Hy guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, there isn't a full list of known properties except those that you can find in schema.capabilities.json file (&lt;A href="https://github.com/Microsoft/PowerBI-visuals-tools/tree/master/templates/visuals/.api" target="_self"&gt;there is a list of all APIs&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;A process of &lt;A href="https://microsoft.github.io/PowerBI-visuals/docs/concepts/objects-and-properties/" target="_self"&gt;documentation&lt;/A&gt; building and improvement is ongoing so, sooner or later such list will appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jul 2019 16:32:26 GMT</pubDate>
    <dc:creator>v-evelk</dc:creator>
    <dc:date>2019-07-12T16:32:26Z</dc:date>
    <item>
      <title>Power BI Custom Visual - Objects and Properties types</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/736401#M2351</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to use custom object property type (in capabilities.json)? I would like to use slider (values from-to) and buttons in Visualizations-&amp;gt;Format-&amp;gt;Objects-&amp;gt;Properties-&amp;gt;Property:type.&lt;/P&gt;&lt;P&gt;I was able to find and use only these types: integer, number, text, bool,&amp;nbsp;&lt;SPAN&gt;enumeration, etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm able to display slider only like this (transparency key does the magic):&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;"transparency": {
&amp;nbsp; &amp;nbsp;"displayName": "Zoom",
&amp;nbsp; &amp;nbsp;"type": {
&amp;nbsp; &amp;nbsp; &amp;nbsp; "integer": true
&amp;nbsp; &amp;nbsp;}
}&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Patrik&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Jul 2019 10:53:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/736401#M2351</guid>
      <dc:creator>patrik20</dc:creator>
      <dc:date>2019-07-10T10:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual - Objects and Properties types</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/736882#M2353</link>
      <description>&lt;P&gt;Replying to confirm this is something I'm keen to know as well - all that seems to be publicly available is the &lt;FONT face="courier new,courier"&gt;&lt;A href="https://github.com/microsoft/powerbi-visuals-api/blob/master/schema.capabilities.json#L872" target="_self"&gt;valueType&lt;/A&gt;&lt;/FONT&gt; we can assign to an object, and the corresponding &lt;FONT face="courier new,courier"&gt;&lt;A href="https://github.com/microsoft/powerbi-visuals-api/blob/master/index.d.ts#L987" target="_self"&gt;ValueTypeDescriptors&lt;/A&gt;&lt;/FONT&gt;.&lt;/P&gt;&lt;P&gt;However, as OP mentions, there do seem to be some naming conventions around objects where if they contain the right string and have the right type, will result in rendering a slider rather than a text box (e.g. transparency), or maybe others we don't know about. Maybe it's if the numeric value can resolve to a percentage value? Not entirely sure but would be good to confirm what we can do here to improve the user experience around objects.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/112988"&gt;@v-evelk&lt;/a&gt;&amp;nbsp;- is there such a list of known patterns for object names and how they will affect the rendering of the object in the properties pane? If not, is it possible to supply it please? This might help in the case where it's not possible to introduce custom types and the team already has something that might satisfy requirements.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 20:46:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/736882#M2353</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2019-07-10T20:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual - Objects and Properties types</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/738939#M2356</link>
      <description>&lt;P&gt;Hy guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, there isn't a full list of known properties except those that you can find in schema.capabilities.json file (&lt;A href="https://github.com/Microsoft/PowerBI-visuals-tools/tree/master/templates/visuals/.api" target="_self"&gt;there is a list of all APIs&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;A process of &lt;A href="https://microsoft.github.io/PowerBI-visuals/docs/concepts/objects-and-properties/" target="_self"&gt;documentation&lt;/A&gt; building and improvement is ongoing so, sooner or later such list will appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 16:32:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/738939#M2356</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-07-12T16:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual - Objects and Properties types</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/1325711#M3322</link>
      <description>&lt;P&gt;Is there any progress on the documentation? I realize that power bi native widgets such as the Line Chart use capability object properties such as [X Axis].[Minum category width] that are displayed as a slider with a minimum and maximum value. This is something that would improve the user experience for my custom visual as well. Obviously the API for this exists so it would be nice if documentation how to achieve this was be available.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2020 11:40:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/1325711#M3322</guid>
      <dc:creator>b4ckup</dc:creator>
      <dc:date>2020-08-26T11:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual - Objects and Properties types</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/1931603#M3777</link>
      <description>&lt;P&gt;I'm also curious about this.&amp;nbsp; I'd like to customize the elements used to set the capability object properties.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since the native visuals show sliders, links and buttons, there must be a way to insert these.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any updates?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 19:59:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/1931603#M3777</guid>
      <dc:creator>WZorn</dc:creator>
      <dc:date>2021-06-30T19:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Custom Visual - Objects and Properties types</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/2438529#M4419</link>
      <description>&lt;P&gt;Just bumped into the same issue. Finding all the formatting tricks is really hard.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 15:19:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visual-Objects-and-Properties-types/m-p/2438529#M4419</guid>
      <dc:creator>spandl</dc:creator>
      <dc:date>2022-04-05T15:19:38Z</dc:date>
    </item>
  </channel>
</rss>

