Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

line chart overlapping values and dots.

Good Afternoon fellows,

I have a simple line chart (see image).  How you can see, all values are on dots. Can I change the values position far away from dots? (see top-right-corner image)





overlapping dots and values.png

3 Replies
sergio0592
Specialist III
Specialist III

Hi,

You can use dual for shift your value on the right.

dual('          '&sum(Ingresos), sum(Ingresos))

Or with chr(10), i think it's closer from what you are trying to achieve because offsets value above.

dual(sum(Ingresos)&chr(10)&'  ', sum(Ingresos))

And if you want increase the offset add chr(10) : dual(sum(Ingresos)&chr(10)&'  '&chr(10)&'  ', sum(Ingresos))

Not applicable
Author

Dear Jean, Thank you very much by your answer.

I apreciate your time dedicate in this issue.

I found other way.  I created one fake expression only to shows the green line using: sum(Ingresos)* 0.96, meanwhile the original expression is used to shows the values. Combining both expression I get a chart wanted.  The factor 0.96 allows increase the offset between dots and values. 














                                                    

Not applicable
Author

Thank you very much. I apreciate your time dedicate in this issue.

I found other way a little complex. I created one fake expression only to

shows the green line using: sum(Ingresos)* 0.96, meanwhile the original

expression is used to shows the values. Combining both expression I get a

chart wanted. The factor 0.96 allows increase the offset between dots and

values

2017-10-16 14:48 GMT-04:00 sergio0592 <qcwebmaster@qlikview.com>: