Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Line style/formatting in charts

I saw this post yesterday and asked the following question in that thread but no one saw it...

Can anyone tell me where I might find more of these expression values? For instance;

'<S1>' = Solid Line

'<S2>' = Dashed Line

'<S3>' = Etc....

What about line widths..? '<W1>' ? What other options are there? '<R1>'? '<T5>'? '<D3>'? '<K2>'? Anything else....? A comprehensive list would be great!

Thank you.

16 Replies
Not applicable
Author

This is great.  I didn't see any documentation for controlling Line Symbols (Square, Dot, etc) in the expression.  Is it possible ?

Thanks

Not applicable
Author

Hello All,

Is there any way, where we can represent bar charts in following fashion ?

Dotted Bar Chart.PNG

Thanks in advance

Regards

Kiran Shinde

Anonymous
Not applicable
Author

Hi Kiran,

You can use '-(<Expression>)' (negative sign in front of second expression) and you can get a chart the way you asked for.

Not applicable
Author

How does one make the linear line on a graph dashed?

Anonymous
Not applicable
Author

Hi All,

I'm joining the discussion questions - is there any chance to get dashed line bar in bar chart?

Thank you for help!

Best Regards,

Jacek Antek

Anonymous
Not applicable
Author

He needs dashed line borders - not negative bars.

Anonymous
Not applicable
Author

Hi.

Although it doesnt look possible to have dashed line for bar charts, but you can use other trick.

Instead of changing line style, you can change background color to transparent!

E.g.:

If(Year < Year(Now()),

    Color(RowNo()),

    ARGB(128, Color(RowNo()) >>16  bitand 255, Color(RowNo()) >>8 bitand 255, Color(RowNo()) bitand 255 )

)