<?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 Bar Chart - Data Point Colours in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/275816#M8274</link>
    <description>&lt;P&gt;I think that you should implement sorting for &lt;STRONG&gt;barChartDataPoints&lt;/STRONG&gt; in &lt;STRONG&gt;visualTransform&lt;/STRONG&gt; function.&lt;/P&gt;&lt;P&gt;In other words, you need to keep sorting index in &lt;STRONG&gt;BarChartDataPoint&lt;/STRONG&gt; and use&amp;nbsp;the sorting index to sort &lt;STRONG&gt;barChartDataPoints.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&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, 11 Oct 2017 09:46:34 GMT</pubDate>
    <dc:creator>v-viig</dc:creator>
    <dc:date>2017-10-11T09:46:34Z</dc:date>
    <item>
      <title>Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/263686#M8099</link>
      <description>&lt;P&gt;I am creating a custom bar chart using&amp;nbsp;&lt;A href="https://github.com/Microsoft/PowerBI-visuals-sampleBarChart" target="_blank"&gt;sampleBarChart&lt;/A&gt; to show duration of my tests, in addition in need to show passed and failed tests using different colours for each bar.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are my data roles in capabilities.json . The Legend data role will contain the result for each test.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    "dataRoles": [
        {
            "displayName": "Category Data",
            "name": "category",
            "kind": "Grouping"
        },
        {
            "displayName": "Measure Data",
            "name": "measure",
            "kind": "Measure"
        }, 
        {
            "displayName": "Legend", 
            "name": "series", 
            "kind": "Grouping"
        }
    ],&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current data view mapping.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; "dataViewMappings": [
        {
            "conditions": [
                {
                    "category": {
                        "max": 1
                    },
                    "measure": {
                        "max": 1
                    }
                }
            ],
            "categorical": {
                "categories": {
                    "for": {
                        "in": "category"
                    }
                },
                "values": {
                    "group": {
                        "by": "series", 
                        "select": [
                            { "for": {
                                "in": "measure"
                            }}
                        ]
                    }
                
                }
            }
        }
    ],&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current code doesn't plot any bars on the chart.&amp;nbsp; However in the dataview of the custom visual online this is what it shows.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="dataview.png" style="width: 328px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/62794i9A069688968FC587/image-size/large?v=v2&amp;amp;px=999" role="button" title="dataview.png" alt="dataview.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Under categories each test ID is shown seperately and under values it groups the durations into two groups passed and failed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not made any other changes to the code. If someone could please help me show the duration of each test&amp;nbsp;and set colour of each bar according to whether that particular test has passed or failed. I have been able to achieve this in the native column chart of Power Bi but I need to be able to do the same in this custom visual because i need to make&amp;nbsp;more changes to this chart.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Mon, 02 Oct 2017 14:30:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/263686#M8099</guid>
      <dc:creator>paramjit_s</dc:creator>
      <dc:date>2017-10-02T14:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/266650#M8122</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/43331"&gt;@paramjit_s&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to update visualTransform function in order to enumerate groups as well (&lt;SPAN&gt;categorical&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;values&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;grouped&lt;/SPAN&gt;&lt;SPAN&gt;()).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Every category should be assigned to a proper group.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please let me know if you have any further questions.&lt;/SPAN&gt;&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>Tue, 03 Oct 2017 09:26:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/266650#M8122</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-10-03T09:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/266739#M8124</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;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for replying.&lt;/P&gt;&lt;P&gt;I did figure out that I need to make changes to the visualTransform function and eumerate groups into it. Howvever, I am unable to figure out how exactly to do that.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible for you to give me an example on how I would assign a group to a category, so that I can try to apply that to my project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for the help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Paramjit S&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 10:09:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/266739#M8124</guid>
      <dc:creator>paramjit_s</dc:creator>
      <dc:date>2017-10-03T10:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/267881#M8136</link>
      <description>&lt;P&gt;Please take a look at &lt;A href="https://1drv.ms/u/s!As9ZTdAyQtTDiQMdPqz-42_bq5h7" target="_blank"&gt;this&lt;/A&gt; sample code.&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, 04 Oct 2017 10:06:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/267881#M8136</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-10-04T10:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/269031#M8175</link>
      <description>&lt;P&gt;Thank you very much for the sample code. It was a great help in my project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There's a slight issue I am having, the bars are grouped in a way in which when I try to perform implict sort on them (by date), they are sorted while remaining in their respective groups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="example.png" style="width: 304px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/63322iACFBBA69F6A9E5DA/image-dimensions/304x159?v=v2" width="304" height="159" role="button" title="example.png" alt="example.png" /&gt;&lt;/span&gt;&lt;/P&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;P&gt;&amp;nbsp;&lt;/P&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;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please guide me on how to solve this issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;Paramjit S&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 09:55:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/269031#M8175</guid>
      <dc:creator>paramjit_s</dc:creator>
      <dc:date>2017-10-05T09:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/270248#M8200</link>
      <description>&lt;P&gt;How do you sort columns? Could you please share your snippet code?&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>Fri, 06 Oct 2017 07:55:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/270248#M8200</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-10-06T07:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/270302#M8204</link>
      <description>&lt;P&gt;I just added another data role and then applied implicit sorting on it in capabilities.json.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an example of data that goes into this datarole,&amp;nbsp;&lt;STRONG&gt;2017-03-17 12:27:00.000&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
      "displayName": "Sort By", 
      "name": "sort", 
      "kind": "Measure"
}&lt;/PRE&gt;&lt;PRE&gt;"sorting": {
        "implicit": {
            "clauses": [
                {
                    "role": "sort",
                    "direction": 1
                }
            ]
        }
    }&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Oct 2017 08:31:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/270302#M8204</guid>
      <dc:creator>paramjit_s</dc:creator>
      <dc:date>2017-10-06T08:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/273103#M8226</link>
      <description>&lt;P&gt;Did you include this column into dataViewMappings.categorical.categories?&lt;/P&gt;&lt;P&gt;It should look like this:&lt;/P&gt;&lt;PRE&gt;"categorical": {
    "categories": {
        "select": [
            {
                "for": {
                    "in": "category"
                }
            },
            {
                "for": {
                    "in": "sort"
                }
            }
        ]
    },
    "values": {
        "group": {
            "by": "series",
            "select": [
                {
                    "for": {
                        "in": "measure"
                    }
                }
            ]
        }
    }
}&lt;/PRE&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>Mon, 09 Oct 2017 07:38:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/273103#M8226</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-10-09T07:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/273172#M8228</link>
      <description>&lt;P&gt;Yes I did include it in the dataViewMappings like how you did&amp;nbsp;above but unfortunately it is still not sorting the columns quite right. They are being sorted while still remaining in their groups, I need to seperate them somehow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paramjit S&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 08:40:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/273172#M8228</guid>
      <dc:creator>paramjit_s</dc:creator>
      <dc:date>2017-10-09T08:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/273967#M8248</link>
      <description>&lt;P&gt;I apologize. There's a mistake in my example above.&lt;/P&gt;&lt;P&gt;This is the fixed one:&lt;/P&gt;&lt;PRE&gt;{
    "dataRoles": [
        {
            "displayName": "Category Data",
            "name": "category",
            "kind": "Grouping"
        },
        {
            "displayName": "Measure Data",
            "name": "measure",
            "kind": "Measure"
        },
        {
            "displayName": "Legend",
            "name": "series",
            "kind": "Grouping"
        },
        {
            "displayName": "Sort order",
            "name": "sort",
            "kind": "Measure"
        }
    ],
    "dataViewMappings": [
        {
            "conditions": [
                {
                    "category": {
                        "max": 1
                    },
                    "measure": {
                        "max": 1
                    }
                }
            ],
            "categorical": {
                "categories": {
                    "for": {
                        "in": "category"
                    }
                },
                "values": {
                    "group": {
                        "by": "series",
                        "select": [
                            {
                                "for": {
                                    "in": "measure"
                                }
                            },
                            {
                                "for": {
                                    "in": "sort"
                                }
                            }
                        ]
                    }
                }
            }
        }
    ],
    "sorting": {
        "implicit": {
            "clauses": [
                {
                    "role": "sort",
                    "direction": 1
                }
            ]
        }
    }
}&lt;/PRE&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>Tue, 10 Oct 2017 07:30:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/273967#M8248</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-10-10T07:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/274124#M8251</link>
      <description>&lt;P&gt;Unfortunately that still does not solve the problem I am having.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to clarify the problem isn't to do with sorting the columns. It is that when the columns are created in the visualTransform&amp;nbsp; function they are grouped in such a way so that when I try to sort them they are being sorted while remaining in their respective groups (passed, failed &amp;amp; incomplete).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="eg.png" style="width: 436px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/63905i08B9F5813EB231EE/image-dimensions/436x175?v=v2" width="436" height="175" role="button" title="eg.png" alt="eg.png" /&gt;&lt;/span&gt;This is what the custom&amp;nbsp;chart looks like for one of the tests. Blue represents failed, yellow incomplete and red passed. The columns are actually sorted in this chart by date but with the current code they are only being sorted within their groups and not as a whole&amp;nbsp;chart.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&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;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="eg2.png" style="width: 434px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/63911i068088CFE90609BA/image-dimensions/434x253?v=v2" width="434" height="253" role="button" title="eg2.png" alt="eg2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is the native PowerBi column chart&amp;nbsp;representing the same test as above. The columns in this&amp;nbsp;chart are sorted using the same field as the above chart. So I need to make my custom graph look like this one.&amp;nbsp;&lt;/P&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;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paramjit S&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 15:37:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/274124#M8251</guid>
      <dc:creator>paramjit_s</dc:creator>
      <dc:date>2017-10-10T15:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Bar Chart - Data Point Colours</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/275816#M8274</link>
      <description>&lt;P&gt;I think that you should implement sorting for &lt;STRONG&gt;barChartDataPoints&lt;/STRONG&gt; in &lt;STRONG&gt;visualTransform&lt;/STRONG&gt; function.&lt;/P&gt;&lt;P&gt;In other words, you need to keep sorting index in &lt;STRONG&gt;BarChartDataPoint&lt;/STRONG&gt; and use&amp;nbsp;the sorting index to sort &lt;STRONG&gt;barChartDataPoints.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&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, 11 Oct 2017 09:46:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Bar-Chart-Data-Point-Colours/m-p/275816#M8274</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2017-10-11T09:46:34Z</dc:date>
    </item>
  </channel>
</rss>

