<?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 Visual Adding a raw singular column without categorising the values in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3682638#M49406</link>
    <description>&lt;P&gt;Almost, this does allow me to get only one column of data points. But for example if i have a column like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mophi_0-1707212796544.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1038091i642D3B07EEAE6F1B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mophi_0-1707212796544.png" alt="mophi_0-1707212796544.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;it still puts the 0.02 into one bucket:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mophi_1-1707212861027.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1038092i708BBB6D71D47E0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mophi_1-1707212861027.png" alt="mophi_1-1707212861027.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But i would like to have them as seperate values.&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2024 09:49:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-02-06T09:49:10Z</dc:date>
    <item>
      <title>Custom Visual Adding a raw singular column without categorising the values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3675571#M49295</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;im trying to create my own custom visual histogram but i'm having some trouble when importing my data points into the visual.&lt;BR /&gt;When choosing my dataroles in the capabilities.json there are the options to map the data by categories, single, table etc but all of these require a grouping category. What i need though is only to get only a single column of data points into my visual without any summarizing of any of the points. Just the raw column.&lt;BR /&gt;I haven't found anything to this regard yet so your help would be greatly appreciated.&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 12:50:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3675571#M49295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-02T12:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Visual Adding a raw singular column without categorising the values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3677968#M49315</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;Not sure if I understand correctly, but I think the following creates a field where you can drag a single column into, and it binds the data.&lt;BR /&gt;&lt;BR /&gt;Here's a decent tutorial:&lt;BR /&gt;&lt;A href="https://github.com/ABKimmel/Power-BI-Visualization-Development-Tutorial/blob/master/docs/capabilities/2-AddingDataViewMappings.md" target="_blank"&gt;https://github.com/ABKimmel/Power-BI-Visualization-Development-Tutorial/blob/master/docs/capabilities/2-AddingDataViewMappings.md&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "dataRoles": [
        {
            "displayName": "Field Name",
            "name": "fieldInternalName",
            "kind": "Grouping"
        }
    ],
    
    "dataViewMappings": [
        {
            "categorical": {
                "categories": {
                    "select": [
                        { "bind": { "to": "fieldInternalName" } }
                    ]
                }
            },
            "conditions": [
                {
                    "fieldInternalName": {
                        "max": 1
                    }
                }
            ]
        }
    ]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2024 17:43:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3677968#M49315</guid>
      <dc:creator>JanRak</dc:creator>
      <dc:date>2024-02-03T17:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Visual Adding a raw singular column without categorising the values</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3682638#M49406</link>
      <description>&lt;P&gt;Almost, this does allow me to get only one column of data points. But for example if i have a column like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mophi_0-1707212796544.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1038091i642D3B07EEAE6F1B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mophi_0-1707212796544.png" alt="mophi_0-1707212796544.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;it still puts the 0.02 into one bucket:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mophi_1-1707212861027.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1038092i708BBB6D71D47E0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mophi_1-1707212861027.png" alt="mophi_1-1707212861027.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But i would like to have them as seperate values.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 09:49:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-Adding-a-raw-singular-column-without-categorising/m-p/3682638#M49406</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-06T09:49:10Z</dc:date>
    </item>
  </channel>
</rss>

