Skip to main content
ArturoMuñoz
Employee
Employee

Continuing the line charts topic I've started a few weeks ago, let see how to adjust a line chart to help us to see what we want to.

Displaying what is important

In the example below I want to display Sales evolution by store over time, but it happens that this company has too many stores (lines) to easily identify them individually in the chart.

I still can get some value out of this chart; global trend is still visible. Seems like sales are decreasing over time, but details are lost in the color mess.

6.png

As color is not helping me to better decode this chart, I will unify line colors.

7.png

8.png

Now I can see much better my company’s trend, sales amount is decreasing, based on the overlap of individual store behaviors but details are still hidden in green.

Selecting a store I could isolate it and get its details. This is great and fast, but it avoids me from seeing the selected store in context. What I would like to see is the sales evolution of particular store vs all others.

9.png

The next step will be to avoid the chart to be filtered out when a store name is selected, to do so I will include set analysis in my expression.

Original expression:  sum(Sales)

New expression:       sum({<Store=, [Store Name]=>} Sales)

By doing that my chart won’t be filtered by Store or Store Name selections

10.png

Now, what I need is to highlight the store within the chart. Again I will use the Background Color properties for the expression to achieve that.

11.png

if(isnull(only([Store Name])) ,ARGB(20,200,200,200),ARGB(190,43, 123, 70))


This expression will gray out all non-selected stores and highlight our selection(s).

12.png

13.png

With this new chart, my selections will help me to see store details and to keep selected store(s) in context. I can see the global trend and compare it with any store just by searching and selecting.

Extra tip:  If you look carefully at the two charts above, you may notice a slightly color difference in the second image dark green line, this is because the green line is under several semi-transparent gray lines making it look little bit different.
Sorting the dimension will help you to prevent this. In this case I’m sorting Store Name by sales amount using the following expression.

aggr(sum(Sales),[Store Name])

You can see this chart working as part of Retailer EPOS Data Analysis demo.

Line charts beyond your imagination

These are some creative and really cool non-standard uses of line charts I have seen lately:

Parallel Co-Ordinates Chart

14.png


This chart variation was firstly introduced by Alistair Eaves some time ago. The chart is great for showing data paths between various dimensions; letting people to understand something so hard to see as flows dynamics in the data. Check out the demo

Dynamic Network Flow Charts


15.png

If you are a frequent flyer you will probably have read all magazines in your front pocket. One of my favorites readings on board are these maps with all the routes airlines operate through the world. Matthew Crowther stretched out QlikView line chart object to display information in the same way but keeping the QV soul (association) in it. If you want to know how to do it, you should read: New Qlikview Chart Type: Dynamic Network Flow Charts | QVDesign

The Associated Curve Chart


16.png

Based on the same principles but pushing things a little bit more Matthew presented this new chart, he called Associated Curve Chart.  You can check it out at Matthew's blog

Enjoy Qliking!

AMZ

27 Comments
ArturoMuñoz
Employee
Employee

Unexpected user experience is very true. Please keep that in mind when using this technique in your app.

Also very true, alpha blending and scatter charts works very nicely together.

0 Likes
2,745 Views
juleshartley
Specialist
Specialist


Hi - is there any more information on 'Alpha blending'... sounds interesting!

0 Likes
2,745 Views
mikecrengland
Creator III
Creator III

I like this technique. I first got inspired by Matt Crowther with his post:

Different Ways to Interact & Display Information With Bar Charts & Tables | QVDesign

I took it a little farther, letting the user choose multiple values, each having its own color with my post:

Fortune Cookie BI: Color me Crazy

I have a little different technique, using the single color/grey that Arturo presented at:

Fortune Cookie BI: Highlight the Trend, Part Deux

It's crazy how many different ways there are to skin a cat...

mike

2,745 Views
stevedark
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi Julian - it's simply the technique of setting the colours for your lines or dots (or whatever) to a semi-transparent value.  This way as more points of colour overlap you get a deeper colour.  I seem to recall a mortgage demo on demo.qlik.com some time ago that used this well - not sure if it is still there.  I've used it in insurance companies, with dots overlaid on maps to show claims.  When the data points then blend it shows locations of high risk to perils such as flooding.  Arturo Muñoz's to last screen shots shows the technique in action two - where you can get a feel for where many of the grey lines are converging.

- Steve

2,745 Views
ArturoMuñoz
Employee
Employee

Hi Julian,

Take a look at this blog post where we cover that topic http://community.qlik.com/blogs/qlikviewdesignblog/2013/10/04/using-rgb-and-argb-to-define-colors

2,745 Views
juleshartley
Specialist
Specialist

Thanks Steve, Arturo and Mike! Really helpful and inspiring (as always)...

2,745 Views
male_carrasco
Creator
Creator

nice!

0 Likes
2,745 Views
Not applicable

Wow, this is a very useful trick. I can already see myself using this more often. Thanks a lot for sharing.

0 Likes
2,745 Views
Not applicable

Love this.

I have a question as well. Can this be done when using ValueList dimensions as in the attached link? http://poverconsulting.com/?p=109

I have been unsucessful with this as it always hides all barring the selected values.

0 Likes
2,755 Views
Anonymous
Not applicable

Very nice and really well written.  Thank you!

0 Likes
2,755 Views