Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to emphasize the lowest/highest value in a graph

Dear all,

I've a graph, a linear graph,  which represents a sort of performance monitor.

Is it possible to underline , emphasize, the lowest value (or high) ?

Thanks in advance

Stefan

1 Solution

Accepted Solutions
skokenes
Luminary Alumni
Luminary Alumni

What I typically do is use the rank() function with a combo chart.

First I write an expression for the line I am graphing:

sum(Expression1)

Then I add separate expressions for the min and the max that are set to be symbols instead of lines. The expression for the max:

if(rank(sum(Expression1))=1,sum(Expression1))

The min would be the inverse of that expression:

if(rank(-sum(Expression1))=1,sum(Expression1))

Finally, I use the Background Color settings available on the expression dropdown to set the min and max to the colors I want. The result:

Trend Example.png

View solution in original post

2 Replies
skokenes
Luminary Alumni
Luminary Alumni

What I typically do is use the rank() function with a combo chart.

First I write an expression for the line I am graphing:

sum(Expression1)

Then I add separate expressions for the min and the max that are set to be symbols instead of lines. The expression for the max:

if(rank(sum(Expression1))=1,sum(Expression1))

The min would be the inverse of that expression:

if(rank(-sum(Expression1))=1,sum(Expression1))

Finally, I use the Background Color settings available on the expression dropdown to set the min and max to the colors I want. The result:

Trend Example.png

Anonymous
Not applicable
Author

Hi Speros,

you are the best !!

THANKS!!