Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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)
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))
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.
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>: