<?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 Using Deneb to create a kanban view in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Using-Deneb-to-create-a-kanban-view/m-p/3433108#M7976</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my free time I'm trying to create a DevOps kanban view that I can send to clients that will allow them to view the progression of tasks as they move between different states, without giving them access to DevOps itself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recently discovered the Deneb custom visual and was hoping that this may be able to help me achieve what I'm looking for but I have no knowledge of the Vega-Lite language.&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="PBIDesktop_1KlzaXmKm2.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/969279i79C7638EAF6CC7A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PBIDesktop_1KlzaXmKm2.png" alt="PBIDesktop_1KlzaXmKm2.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;I've got the rectangles in place but how do I get my array of values from "repeat" to display at the top of each rectangle?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "data": {"name": "dataset"},
  "repeat": {
    "column": [
      "New",
      "Analysis",
      "Refinement",
      "Ready",
      "Development",
      "UAT",
      "Closed"
    ]
  },
  "spec": {
    "layer": [
      {
        "mark": {
          "type": "rect",
          "width": 100,
          "height": 300
        }
      },
      {
        "mark": {
          "type": "text",
          "dy": -175
        },
        "encoding": {
          "text": {
            "field": {
              "repeat": "column"
            }
          }
        }
      }
    ]
  }
}&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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Sep 2023 14:55:34 GMT</pubDate>
    <dc:creator>Seanan</dc:creator>
    <dc:date>2023-09-15T14:55:34Z</dc:date>
    <item>
      <title>Using Deneb to create a kanban view</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Using-Deneb-to-create-a-kanban-view/m-p/3433108#M7976</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my free time I'm trying to create a DevOps kanban view that I can send to clients that will allow them to view the progression of tasks as they move between different states, without giving them access to DevOps itself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recently discovered the Deneb custom visual and was hoping that this may be able to help me achieve what I'm looking for but I have no knowledge of the Vega-Lite language.&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="PBIDesktop_1KlzaXmKm2.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/969279i79C7638EAF6CC7A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PBIDesktop_1KlzaXmKm2.png" alt="PBIDesktop_1KlzaXmKm2.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;I've got the rectangles in place but how do I get my array of values from "repeat" to display at the top of each rectangle?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "data": {"name": "dataset"},
  "repeat": {
    "column": [
      "New",
      "Analysis",
      "Refinement",
      "Ready",
      "Development",
      "UAT",
      "Closed"
    ]
  },
  "spec": {
    "layer": [
      {
        "mark": {
          "type": "rect",
          "width": 100,
          "height": 300
        }
      },
      {
        "mark": {
          "type": "text",
          "dy": -175
        },
        "encoding": {
          "text": {
            "field": {
              "repeat": "column"
            }
          }
        }
      }
    ]
  }
}&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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 14:55:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Using-Deneb-to-create-a-kanban-view/m-p/3433108#M7976</guid>
      <dc:creator>Seanan</dc:creator>
      <dc:date>2023-09-15T14:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using Deneb to create a kanban view</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Using-Deneb-to-create-a-kanban-view/m-p/3476105#M8076</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/333322"&gt;@Seanan&lt;/a&gt;, based on what you're describing, I believe the layout composition you want is facet, not repeat.&lt;BR /&gt;&lt;A href="https://vega.github.io/editor/#/gist/794ac7e24a40a0fbcba519a6039a4440/spec.json" target="_self"&gt;Here&lt;/A&gt; is an example gist (note - I explicitly listed the values in the values array of the data object. You'll want to remove that in Deneb). Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giammariam_0-1697218316551.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/980926i710A87669E7CF580/image-size/medium?v=v2&amp;amp;px=400" role="button" title="giammariam_0-1697218316551.png" alt="giammariam_0-1697218316551.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is enough to get you going please consider liking this reply and choosing it as the solution. Otherwise, I'm happy to help further.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 17:32:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Using-Deneb-to-create-a-kanban-view/m-p/3476105#M8076</guid>
      <dc:creator>giammariam</dc:creator>
      <dc:date>2023-10-13T17:32:10Z</dc:date>
    </item>
  </channel>
</rss>

