<?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: Styling New Straight Table With Custom Theme in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531829#M108053</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;As of now, it appears to be impossible to do so in the theme file. Or at least there is no corresponding properties in the ones listed on qlik.dev website.&lt;/P&gt;&lt;P&gt;It would be a good thing that they do so!&lt;/P&gt;&lt;P&gt;Bests,&lt;/P&gt;</description>
    <pubDate>Thu, 25 Sep 2025 12:18:08 GMT</pubDate>
    <dc:creator>etrimoreau</dc:creator>
    <dc:date>2025-09-25T12:18:08Z</dc:date>
    <item>
      <title>Styling New Straight Table With Custom Theme</title>
      <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2516046#M105743</link>
      <description>&lt;P&gt;Within the "New" Straight Table, is it possible to use a custom theme (within the JSON file) to set default styling on the Header, Dimension Values, Measure Values, Total Row, etc.?&lt;/P&gt;&lt;P&gt;I was able to deduce that the object's reference is sn-table and am able to customize the "Main" section (Headers, footers, etc.) but I haven't been able to locate any documentation for the rest of the Styling options.&lt;/P&gt;&lt;P&gt;I imagine the format would be something like this, but no combinations/arrangement that I've tried seem to work&lt;/P&gt;&lt;P&gt;"sn-table": {&lt;BR /&gt;"dimension":{&lt;BR /&gt;"values":{&lt;BR /&gt;"fontSize":"16px",&lt;BR /&gt;"color":"#FFFFFF",&lt;BR /&gt;"background":"#326F91"&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Attached is a screenshot of the properties panel in question.&lt;/P&gt;&lt;P&gt;Any assistance would be much appreciated. Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 13:09:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2516046#M105743</guid>
      <dc:creator>Zack_Vilski</dc:creator>
      <dc:date>2025-05-09T13:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Styling New Straight Table With Custom Theme</title>
      <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531808#M108047</link>
      <description>&lt;P&gt;EDIT :&lt;BR /&gt;For those who want to go further, you can also define the style and weight of text elements in the theme file.&lt;BR /&gt;By defining typical weights and styles in the "_variables" section, you can then later use them to apply bold weight or italic styling for example.&lt;BR /&gt;&lt;BR /&gt;Here is an example using the included Roboto font that is available in Qlik:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"_variables": {
  "@main-font-family": "Roboto",

  "@main-font-style": "normal",
  "@italic-font-style": "italic",

  "@bold-font-weight": "700",
  "@main-font-weight": "400",
  "@light-font-weight": "300",
  "@extralight-font-weight": "200"
}&lt;/LI-CODE&gt;&lt;P&gt;Then you just refer them in the desired section using "fontWeight" or "fontStyle" properties:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      "title": {
          "main": {
              "fontSize": "@H1",
              "fontWeight": "@bold-font-weight",
              "backgroundColor": "@bg-transparent"
          },
          "subTitle": {
              "fontSize": "@H4",
              "fontWeight": "@bold-font-weight",
              "backgroundColor": "@bg-transparent"
          },
          "footer": {
              "color": "@B50",
              "fontSize": "@H6",
              "fontStyle": "@italic-font-style",
              "backgroundColor": "@bg-warning"
          }&lt;/LI-CODE&gt;&lt;P&gt;Again, hope this helps you get your styling level over 9000!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The new Straight table can indeed be styled within the custom theme json file.&lt;BR /&gt;All the information needed can be found here:&lt;BR /&gt;&lt;A href="https://qlik.dev/extend/property-panel-basics/define-properties/themes-properties/#straighttablev2" target="_blank" rel="noopener"&gt;https://qlik.dev/extend/property-panel-basics/define-properties/themes-properties/#straighttablev2&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You just made a tiny error concerning the objet name to refer to in the theme file:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="etrimoreau_0-1758787941341.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/183845i0F70C3EE0BE2FA95/image-size/medium?v=v2&amp;amp;px=400" role="button" title="etrimoreau_0-1758787941341.png" alt="etrimoreau_0-1758787941341.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hence it is not sn-table but straightTableV2.&lt;BR /&gt;The whole example is indicated on the aforementioned url:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;"straightTableV2": {
      "dimension": {
        "label": {
          "name": {
            "fontFamily": "Verdana",
            "fontSize": "18px",
            "color": "#ccc",
            "backgroundColor": "#ff0000"
          },
          "value": {
            "fontFamily": "sans-serif",
            "fontSize": "12px",
            "color": "#000000",
            "backgroundColor": "orangered"
          }
        }
      },
      "measure": {
        "label": {
          "value": {
            "fontFamily": "Arial",
            "fontSize": "14px",
            "color": "#ccc",
            "backgroundColor": "#ff0099"
          }
        }
      },
      "total": {
        "label": {
          "value": {
            "fontFamily": "Tahoma",
            "fontSize": "24px",
            "color": "#fff",
            "backgroundColor": "#3399aa"
          }
        }
      },
      "null": {
        "label": {
          "value": {
            "color": "red",
            "backgroundColor": "#ccc"
          }
        }
      },
      "grid": {
        "borderColor": "purple",
        "divider": {
          "borderColor": "lime"
        },
        "hover": {
          "color": "orange",
          "backgroundColor": "black"
        }
      }
    }&lt;/LI-CODE&gt;&lt;P&gt;Hope this helps!&lt;BR /&gt;&lt;BR /&gt;I must say I found the way to style this chart by reading your chart and looking for sn-table in Qlik documentation!&lt;BR /&gt;So thanks to you and your post! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Good day.&lt;/P&gt;&lt;P&gt;Bests,&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 14:13:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531808#M108047</guid>
      <dc:creator>etrimoreau</dc:creator>
      <dc:date>2025-09-25T14:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Styling New Straight Table With Custom Theme</title>
      <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531825#M108052</link>
      <description>&lt;P&gt;hello, thanks for the info.&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to set the zebra stripes/alternating rows of color definitions in the theme file?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 11:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531825#M108052</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2025-09-25T11:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Styling New Straight Table With Custom Theme</title>
      <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531829#M108053</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;As of now, it appears to be impossible to do so in the theme file. Or at least there is no corresponding properties in the ones listed on qlik.dev website.&lt;/P&gt;&lt;P&gt;It would be a good thing that they do so!&lt;/P&gt;&lt;P&gt;Bests,&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 12:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531829#M108053</guid>
      <dc:creator>etrimoreau</dc:creator>
      <dc:date>2025-09-25T12:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Styling New Straight Table With Custom Theme</title>
      <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531836#M108055</link>
      <description>&lt;P&gt;That's great news that the documentation is out there now. At the time of posting, there wasn't much out ther for the Straight Table (only the Table-Table).&lt;/P&gt;&lt;P&gt;I had figured some of this out by parsing through the logic in the JavaScript file behind the Extension, but having the extensive documentation will be nice for future reference!&lt;/P&gt;&lt;P&gt;It should be noted that the new Pivot Table works quite similarly and has a similar reference. Below is an outline of what I have working on my end.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;"pivotTableV2": {
	"measure": {
		"label":{
			"name":{
				"fontSize": "@TextSize",
				"color": "@White",
				"backgroundColor": "@Blue"
			},
			"value":{
				"fontSize": "@TextSize",
				"color": "@Black",
				"backgroundColor": "@Blue"
			}
		}
	},
	"dimension": {
		"label":{
			"name":{
				"fontSize": "@TextSize",
				"color": "@White",
				"backgroundColor": "@Blue"
			},
			"value":{
				"fontSize": "@TextSize",
				"color": "@White",
				"backgroundColor": "@Blue"
			}
		}
	},
	"total": {
		"label":{
			"value":{
				"fontSize": "@TextSize",
				"color": "@Black",
				"backgroundColor": "@NaviTotalGray"
			}
		}
	}
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 13:09:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531836#M108055</guid>
      <dc:creator>Zack_Vilski</dc:creator>
      <dc:date>2025-09-25T13:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Styling New Straight Table With Custom Theme</title>
      <link>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531850#M108056</link>
      <description>&lt;P&gt;Yes, and if you want to go further, check the edit on my previous post. You can also apply weights (bold) or styles (italic) to your texts!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 14:15:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Styling-New-Straight-Table-With-Custom-Theme/m-p/2531850#M108056</guid>
      <dc:creator>etrimoreau</dc:creator>
      <dc:date>2025-09-25T14:15:27Z</dc:date>
    </item>
  </channel>
</rss>

