Blog

Blog

Christmas Tree in Qlik Sense®

You can have one like that in any of your applications The recipe is pretty simple:
  1. Create a New app.
  2. Add the following code as Load script:
						
SET xSize=51; //Play with the value to get required tree density
 For i.Y=1 to $(xSize);
    For i.X=1+$(i.Y) to $(xSize)-$(i.Y);
      Tree:
      LOAD 1 AS Value,
             $(i.Y) AS Y,
             $(i.X) AS X,
      RowNo() AS RowId
      AutoGenerate (1);
    Next i.X
Next i.Y

[Scroll]:  
LOAD * Inline [
Scroll
1
2
];
  1. Reload data and go to Analyze section
  2. Add a Scatter Plot chart
  • Set Dimension is RowId
  • Set First Measure Sum(X)
  • Set Second Measure Sum(Y)
  • Set Third Measure Sum(Value)*Rand()
  • Use the following expression to get  Colouring
IF(X=Median(TOTAL X) and Y=Max(TOTAL Y), '#ffd900', 
IF(Column(3)>0.9,lightred(),green(200)))

5. Add an Animator extension from the Qlik Dashboard bundle (from Sep 2020) to make it flickering.

Use Scroll as Dimension.

Press Play button and enjoy!

Merry Christmas and Happy New Year

More To Explore

Breakfast with Q

Breakfast with Q It’s been a pleasure to meet our clients over breakfast and discuss what else Qlik can bring to their business to improve

The website uses cookies to ensure  you get the best experience on our website. To find out more read our Privacy Policy