<?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 Help creating tabular matrix view in Deneb in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Help-creating-tabular-matrix-view-in-Deneb/m-p/4675015#M12475</link>
    <description>&lt;P&gt;I am trying to create this custom gantt chart visual with Deneb. I would like to add a parent column and would like it to replicate the tabular format of a matrix. I am able to create the new column using calculate to create parent subgroups but need help to only show the first value in my parent subgroup in Deneb. Thank you so much for your help in advance!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I current have in Deneb:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is what I would like to replicate in Deneb:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Deneb Code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
 "data": {"name": "dataset"},
 "spacing": 12,
 "transform": [
 {
 "calculate": "datum['Sort Order'] === 1 || datum['Sort Order'] === 2 || datum['Sort Order'] === 3 ? 'Fruit' : null",
 "as": "Parent1"
},
{
 "calculate": "datum['Sort Order'] === 4 || datum['Sort Order'] === 5 || datum['Sort Order'] === 6 ? 'Vegetables' : null",
 "as": "Parent2"
},
 {
 "calculate": "datum.Parent1 || datum.Parent2",
 "as": "Parent"
 },
 {
 "window": [
  {"op": "first_value", "field": "Parent", "as": "Parent Test"}
],
 "frame": [null, null],
 "groupby": ["Parent"]
 },
 {
 "filter": "datum['Parent Test'] !== null"
 }
],
 "hconcat": [
 {
"mark": {"type": "text"},
"encoding": {
 "y": {
 "field": "Level 2",
 "type": "ordinal",
"axis": null,
 "sort": {
 "field": "Sort Order",
"order": "ascending"
 }
},
"text": {
   "field": "Parent Test"}
 }
 },
 { "mark": {"type": "text"},
 "encoding": {
 "y": {
 "field": "Level 2",
"type": "ordinal",
"axis": null,
 "sort": {
 "field": "Sort Order",
"order": "ascending" }
 },
 "text": {
 "field": "Level 2",
 "type": "nominal"
 }
 } }
]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my data table since I can't seem to attach a file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Level 2Sort OrderLevel 1&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Strawberry&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Fruit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Apple&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Fruit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Banana&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Fruit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Cucumber&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;Vegetable&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Zuchini&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;Vegetable&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pepper&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;Vegetable&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
    <pubDate>Wed, 30 Apr 2025 15:32:38 GMT</pubDate>
    <dc:creator>upentropy_22</dc:creator>
    <dc:date>2025-04-30T15:32:38Z</dc:date>
    <item>
      <title>Help creating tabular matrix view in Deneb</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Help-creating-tabular-matrix-view-in-Deneb/m-p/4675015#M12475</link>
      <description>&lt;P&gt;I am trying to create this custom gantt chart visual with Deneb. I would like to add a parent column and would like it to replicate the tabular format of a matrix. I am able to create the new column using calculate to create parent subgroups but need help to only show the first value in my parent subgroup in Deneb. Thank you so much for your help in advance!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I current have in Deneb:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is what I would like to replicate in Deneb:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Deneb Code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
 "data": {"name": "dataset"},
 "spacing": 12,
 "transform": [
 {
 "calculate": "datum['Sort Order'] === 1 || datum['Sort Order'] === 2 || datum['Sort Order'] === 3 ? 'Fruit' : null",
 "as": "Parent1"
},
{
 "calculate": "datum['Sort Order'] === 4 || datum['Sort Order'] === 5 || datum['Sort Order'] === 6 ? 'Vegetables' : null",
 "as": "Parent2"
},
 {
 "calculate": "datum.Parent1 || datum.Parent2",
 "as": "Parent"
 },
 {
 "window": [
  {"op": "first_value", "field": "Parent", "as": "Parent Test"}
],
 "frame": [null, null],
 "groupby": ["Parent"]
 },
 {
 "filter": "datum['Parent Test'] !== null"
 }
],
 "hconcat": [
 {
"mark": {"type": "text"},
"encoding": {
 "y": {
 "field": "Level 2",
 "type": "ordinal",
"axis": null,
 "sort": {
 "field": "Sort Order",
"order": "ascending"
 }
},
"text": {
   "field": "Parent Test"}
 }
 },
 { "mark": {"type": "text"},
 "encoding": {
 "y": {
 "field": "Level 2",
"type": "ordinal",
"axis": null,
 "sort": {
 "field": "Sort Order",
"order": "ascending" }
 },
 "text": {
 "field": "Level 2",
 "type": "nominal"
 }
 } }
]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my data table since I can't seem to attach a file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Level 2Sort OrderLevel 1&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Strawberry&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Fruit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Apple&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Fruit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Banana&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Fruit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Cucumber&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;Vegetable&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Zuchini&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;Vegetable&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pepper&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;Vegetable&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 30 Apr 2025 15:32:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Help-creating-tabular-matrix-view-in-Deneb/m-p/4675015#M12475</guid>
      <dc:creator>upentropy_22</dc:creator>
      <dc:date>2025-04-30T15:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating tabular matrix view in Deneb</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Help-creating-tabular-matrix-view-in-Deneb/m-p/4675191#M12476</link>
      <description>&lt;P&gt;ok, but why ? &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;&lt;A href="https://stackoverflow.com/questions/75975968/table-visual-with-customized-grid-layout-in-deneb-vega-lite" target="_blank"&gt;powerbi - Table visual with customized grid layout in Deneb (Vega-Lite) - Stack Overflow&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 19:57:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Help-creating-tabular-matrix-view-in-Deneb/m-p/4675191#M12476</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-30T19:57:21Z</dc:date>
    </item>
  </channel>
</rss>

