<?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: TRellis Charts Not Showing Data in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1894949#M73829</link>
    <description>&lt;P&gt;Thanks for the tip; I got it to work with a combination of making the set analysis simpler, recreating the trellis and master visualization, and utilizing delivered advanced mode keywords n my set analysis (as well as turning advanced mode on). I ran into a another issue though: the pie/donut charts in my trellis aren't showing % values for all slices; the smaller slices do not show the value label. Is there a way around this issue of the smaller slice values not showing?&lt;/P&gt;</description>
    <pubDate>Fri, 18 Feb 2022 17:38:50 GMT</pubDate>
    <dc:creator>newuser</dc:creator>
    <dc:date>2022-02-18T17:38:50Z</dc:date>
    <item>
      <title>TRellis Charts Not Showing Data</title>
      <link>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1892613#M73575</link>
      <description>&lt;P&gt;I have a weird issue with Trellis charts (something I’m hoping to incorporate eventually into an nPrinting report). The Trellis chart I’m trying to set up is as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Trellis dimension: paymentyear&lt;/LI&gt;
&lt;LI&gt;Master visualization: pie chart using the following measure (and grouped by “paymentmethod”)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error I’m getting says the trellis chart cannot be displayed due to negative or zero values. Any thoughts on how to resolve?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/New-to-Qlik-Sense/Trellis-container-doesn-t-show-data/td-p/1811698" target="_blank" rel="noopener"&gt;This link&lt;/A&gt; says potentially set analysis can cause an issue with trellis charts? I’ve verified the master visualization on its own does render a pie chart successfully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The set analysis below in the master visualization is to ensure each year goes up to and including the most recent month of the most recent year. E.g., if current year month is Feb, the other years would span through Feb but not beyond to compare apples-to-apples, i.e., Jan-Feb19, Jan-Feb20, Jan-Feb21.&lt;/P&gt;
&lt;P&gt;Master visualization measure:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="newuser_0-1644850125537.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/72246iFF35702382DBFA62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="newuser_0-1644850125537.png" alt="newuser_0-1644850125537.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;count({$&amp;lt;[paymentyear] = {"&amp;gt;=$(=max({$}[paymentyear])-2)"},&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [paymentmonth] = {"&amp;lt;=$(=max({$&amp;lt;[paymentyear]={$(=max({$}[paymentyear]))}&amp;gt;} [paymentmonth]))"}&amp;gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;distinct Payment )&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="newuser_1-1644850125555.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/72247i124CC5E69F2B3B83/image-size/medium?v=v2&amp;amp;px=400" role="button" title="newuser_1-1644850125555.png" alt="newuser_1-1644850125555.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Feb 2022 14:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1892613#M73575</guid>
      <dc:creator>newuser</dc:creator>
      <dc:date>2022-02-14T14:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: TRellis Charts Not Showing Data</title>
      <link>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1892907#M73618</link>
      <description>&lt;P&gt;I would suggest to make a more simple check for the YTD comparison.&lt;/P&gt;
&lt;P&gt;try to add this to your (calendar) table :&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IF( NUM(NUM(Month(DateField),'00') &amp;amp;NUM(Day(DateField),'00'))
&amp;lt;= NUM(Month(today()),'00')&amp;amp;NUM(Day(today()),'00'),1,0) AS DateField_YTD,&lt;/LI-CODE&gt;
&lt;P&gt;Then you can easily make the Set-Analysis looks like {&amp;lt;DateField_YTD={1}&amp;gt;}.&lt;BR /&gt;&lt;BR /&gt;Furthermore: check the mastervisualisation for all possible dimension values (select the years one by one). if the maste visualisation shows the below zero error as well for some years, there seems to be something odd within your data model.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 08:31:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1892907#M73618</guid>
      <dc:creator>chris_djih</dc:creator>
      <dc:date>2022-02-15T08:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: TRellis Charts Not Showing Data</title>
      <link>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1894949#M73829</link>
      <description>&lt;P&gt;Thanks for the tip; I got it to work with a combination of making the set analysis simpler, recreating the trellis and master visualization, and utilizing delivered advanced mode keywords n my set analysis (as well as turning advanced mode on). I ran into a another issue though: the pie/donut charts in my trellis aren't showing % values for all slices; the smaller slices do not show the value label. Is there a way around this issue of the smaller slice values not showing?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Feb 2022 17:38:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TRellis-Charts-Not-Showing-Data/m-p/1894949#M73829</guid>
      <dc:creator>newuser</dc:creator>
      <dc:date>2022-02-18T17:38:50Z</dc:date>
    </item>
  </channel>
</rss>

