- The Data Mix
- Posts
- š Your Qlik Visual Toolbox: 230+ Native Charts Inside
š Your Qlik Visual Toolbox: 230+ Native Charts Inside


Hey, itās Brian again š
Last week, we tackled how to make Qlik dashboards easier to navigate - this week, weāre doing something bigger.
Iām talking about the single most requested resource Iāve ever shared.
Over the past few months, Iāve spent 100+ hours curating, testing, rebuilding, and reorganizing what started as a 100-chart challenge... and turned into something much more powerful:
š 230+ Custom Qlik Native Visualizations
š No extensions. No fluff. All built using the native Qlik engine.

The 230+ Qlik Custom Viz Playbook took me over 100 hours to build!
The response has blown me away.
Since sharing the post on LinkedIn, nearly 300 people have downloaded the guide, and the feedbackās been incredible. If youāve already got it - thank you. If you havenāt yet - todayās issue is for you.
As a Data Mix subscriber, youāre getting the inside track on exactly how it works, how it was built, and how to use it in your own dashboards.
Weāre diving into:
Why I built the 230+ Viz Playbook (and how it started as a 100-chart drop)
How to build the Apple Watch-style radial gauge in Qlik - no extensions needed
How to create cartograms using native Qlik map objects and scripting
Where to find the original QVF files from Patric Nordstrƶmās legendary viz tips
Why this changes the game for anyone designing in Qlik
If youāre ready to make dashboards that donāt look like anyone elseās - this is your kit.
Letās get into it.

In Todayās Issue
Iām going to cover these things with you today!
But First⦠- Qlik Connect is approaching fast!!
Cool Tool - Superhuman AI ā Master AI tools, tutorials, and news in just 3 minutes a day
Deep Dive - Apple Watch and Cartograms - How to build 2 of the coolest Viz.
Before You Go - Other ways that I can help and work with you
Finally - at the end of my newsletter, youāll get a poll to tell me how I did and feedback what youād like to see in the future and do for YOU! Letās hope itās not a š„§ chart!
First time reading? ā¬ā¬

But Firstā¦Qlik Connect is on May 13-15
šļø Qlik Connect is 5 Weeks Away - And You Need to Be There
Weāre less than five weeks out from Qlik Connect - and if you're in the world of analytics, automation, or data storytelling, this is the place to be.
š Orlando, Florida - May 13-15
šØ Disneyās Coronado Springs Resort
š
Block the calendar now
Hereās why I think you should be there:
šļø Top 5 Reasons to Attend Qlik Connect 2024
1. Itās where the biggest shifts in the Qlik ecosystem are revealed
From major product launches to new AI capabilities - this is where roadmaps go public.
2. You get to learn directly from the people building the future of Qlik
The engineers, designers, and visionaries are on stage - and often hanging around the coffee stations too.
3. Hands-on sessions that go way beyond the Help site
Build, break, and explore the new features with the people who actually use them.
4. Everyone youāve been tagging, messaging, and following?
Theyāll be there. If weāve talked on LinkedIn or in the comments - I want to meet you in person.
5. Iāve got something big to share
Yep - Iāll be at Qlik Connect this year, and Iāve got an announcement coming in the next week or two. If youāre a Data Mix subscriber, youāll hear it here first.
If youāre serious about what you build in Qlik - this is the one event that ties it all together.
Canāt wait to see you in Orlando!

Find out why 1M+ professionals read Superhuman AI daily.
AI won't take over the world. People who know how to use AI will.
Here's how to stay ahead with AI:
Sign up for Superhuman AI. The AI newsletter read by 1M+ pros.
Master AI tools, tutorials, and news in just 3 minutes a day.
Become 10X more productive using AI.

š Deep Dive
The 230+ Chart Playbook: Breaking the Qlik Mold with 2 Must-Know Visuals
What started as a simple 100-chart challenge exploded into something much bigger: 231 fully native Qlik visualizations, no extensions needed.
This playbook pulls from some of Qlikās sharpest community work - especially the incredible tips originally shared by Patric Nordstrƶm - and repackages them into a curated resource you can use directly in Qlik apps.
This weekās spotlight is on two standout charts from the collection:
The Apple Watch-style Radial Gauge
The Cartogram Grid Map
Hereās how they work - and how to build them.
ā Apple Watch-style Radial Gauge

š Found in: Top 10 Viz Tips Part IV QVF (Radial bar chart / Activity gauge)
What it solves:
Displays multiple KPIs (like Revenue, Margin, Engagement) as clean, circular progress rings - all in one visual.
Why it matters:
Stakeholders instantly grasp how KPIs are tracking. Itās bold, compact, and highly visual - perfect for exec dashboards or performance scorecards.
š§ How to Build It
Script (Backend):
Create circle segments:
circle_segments:
Load (RecNo()-1)/100*2*pi() as r, RecNo()/100 as rp autogenerate 100;
Generates 100 data points around a full circle in radians and percentage.
Set control variables:
let vOffset = 0.05;
let vMax = 0.15;
let vTarget = 0.7;
Sort your data:
load distinct ProductName as P, CategoryName as C ... ;
load recno() as PID ... ;
Front-End (Map Object):
Add a map object with no basemap.
Add an area layer using the polygon field.
Fix shape size so all regions are equal.
Color by measure (sales, population, etc.).
Optionally, add state abbreviations as a point layer.
ā
Fully native
ā
Responsive to selections
ā
Works great with up to 3 concentric KPIs
šÆ Use case: Multi-KPI dashboards, health checks, and circular scorecards
šŗļø Cartogram (Grid-Based Map)

š Found in: Top 10 Viz Tips Part V QVF (Cartograms)
What it solves:
Shows regional performance using equal-sized tiles instead of distorted geographic proportions.
Why it matters:
Lets users compare values - not land size - to highlight real performance drivers.
š§ How to Build It
Script (Backend):
Square grid version:
Use a crosstable load from Excel to capture layout:
num(concat(col)) as g_col, -num(concat(row)) as g_row
Build square polygons from coordinates:
'[[' & g_col & ',' & g_row & '], ... ]' as shape
Hex grid option:
Calculate hex center points:
h_row*1.5 as h_y, h_col*1.73 + mod(h_row,2)*1.73/2 as h_x
Build hexagon shapes with simple math offsets
Front-End (Map Object):
Add a map object with no basemap.
Add an area layer using the polygon field.
Fix shape size so all regions are equal.
Color by measure (sales, population, etc.).
Optionally, add state abbreviations as a point layer.
ā
Square, hex, or circle layouts
ā
Fully dynamic using data model
ā
Great for regional fairness and visual clarity
šÆ Use case: State-by-state dashboards, performance maps, survey reach summaries

š¬ Final Thoughts
These two visuals are just the beginning.
They show whatās possible when you combine native Qlik objects with some creative scripting. Youāre not just building visuals - youāre unlocking entirely new ways to tell stories in Qlik.
And with 231 native charts to choose from, youāll never run out of inspiration.
No extensions. Just creativity, Qlik, and a growing community of builders pushing the limits.

Before you go - hereās 3 ways I can help you
LinkedIn - Iām always talking about Data, Qlik on there and would love to connect with you!
WhatsApp for Qlik - Want to talk to your data in Qlik using WhatsApp? I built that as a service and you can check out the demo.
The Data Mix Podcast on YouTube - Every fortnight, I deliver a cordial interview with the best guests in the world of Data and Analytics.
Rate today's Newsletter |
P.S. If youāre interested in sponsoring the newsletter, please drop me a reply and let me know. Letās talk!
Reply