Reputation: 6260
I have a distribution plot in qlik sense:
How can I specify the color of the dots? I want to change it based on the points. I have three different types of my x-axis 'Geschäftsverteilung' : 'On-Time', 'Delayed' and 'Late', so the on-time are red right now and should be green, the delayed are blue and should be yellow and the late ones are yellow and should be red.
Upvotes: 1
Views: 585
Reputation: 1722
You need to set to change colors by expression something like that:
If(Sum([# Purchases]) > 6,Green(),Red())
To provide exact answer I would need to see your file and know what exactly you want to achieve (what colors for what results)
Upvotes: 2