Book Image

QlikView for Developers Cookbook

By : Stephen Redmond
Book Image

QlikView for Developers Cookbook

By: Stephen Redmond

Overview of this book

QlikView has been around since 1993, but has only really taken off in recent years as a leader in the in-memory BI space and, more recently, in the data discovery area. QlikView features the ability to consolidate relevant data from multiple sources into a single application, as well as an associative data model to allow you to explore the data to a way your brain works, state-of-the-art visualizations, dashboard, analysis and reports, and mobile data access. QlikView for Developers Cookbook builds on your initial training and experiences with QlikView to help you become a better developer. This book features plenty of hands-on examples of many challenging functions. Assuming a basic understanding of QlikView development, this book provides a range of step-by-step exercises to teach you different subjects to help build your QlikView developer expertise. From advanced charting and layout to set analysis; from advanced aggregations through to scripting, performance, and security, this book will cover all the areas that you need to know about. The recipes in this book will give you a lot of the information that you need to become an excellent QlikView developer.
Table of Contents (19 chapters)
QlikView for Developers Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a "Stephen Few" bullet chart


Stephen Few designed the bullet chart as a replacement for a traditional gauge.

A traditional gauge takes up a large amount of space to encode, usually, only one value. A bullet chart is linear and can encode more than one value.

The main components of a bullet chart (from Stephen Few's perceptualedge.com) are as follows:

  • A text label

  • A quantitative scale along a single linear axis

  • The featured measure

  • One or two comparative measures (optional)

  • From two to five ranges along the quantitative scale to declare the featured measure's qualitative state (optional)

There is no native bullet chart in QlikView. However, we can create one by combining a couple of objects.

Items 1, 2, 4, and 5 can be achieved with a linear gauge chart. The bar, item 3, can then be overlaid using a separate and transparent bar chart.

Getting ready

Load the following script:

LOAD * INLINE [
    Country, Sales, Target
    USA, 1000, 1100
    UK, 800, 1000
    Germany, 800, 700
    Japan, 1000, 1000
];

How to do it…

Perform the following steps to create a Stephen Few bullet chart:

  1. Add a new gauge chart. You should add a title and enter text for Title in chart. Click on Next.

  2. There is no dimension in this chart. Click on Next.

  3. Enter the following expression:

    Sum(Target)
  4. Click on Next.

  5. There is no sorting (because there is no dimension), so click on Next.

  6. On the Style tab, select a linear gauge and set the orientation to horizontal. Click on Next.

  7. There are a few changes needed in the Presentation tab:

    Gauge Settings, Max

    Sum(Target) * 1.2

    Indicator, Mode

    Show Needle

    Indicator, Style

    Line

    Show Scale,

    Show Labels on Every

    1

    Autowidth Segments

    Off

    Hide Segment Boundaries

    On

    Hide Gauge Outlines

    On

  8. There should be two segments by default, add a third segment by clicking on the Add button. The settings for each segment are as follows:

    Segment 1, Lower Bound

    0.0

    Segment 2, Lower Bound

    Sum(Target) * 0.5

    Segment 3, Lower Bound

    Sum(Target) * 0.9

  9. Apply appropriate colors for each segment (for example, RAG or Dark/Medium/Light gray).

  10. Click on Finish.

  11. Most of the bullet chart elements are now in place. In fact, this type of linear chart may be enough for some uses. Now we need to add the bar chart.

  12. Add a new bar chart. Don't worry about the title (it will be hidden). Turn off Show Title in Chart. Click on Next.

  13. There is no dimension in this chart either. Click on Next.

  14. Add the following expression:

    Sum(Sales)
  15. Click on Next.

  16. There is no sort (as there is no dimension). Click on Next.

  17. Select a plain bar type. The orientation should be horizontal. Leave the style at the default of Minimal. Click on Next.

  18. Set the following axis settings:

    Hide Axis

    On

    Static Max

    On

    Static Max Expression

    Sum(Target)*1.2

  19. Click on Next.

  20. On the Color tab, set Transparency to 100%. Set the first color to a dark color. Click on Next.

  21. Continue to click on Next until you get to the Layout tab. Set the shadow to No Shadow and the border width to 0. Set the Layer to Top. Click on Next.

  22. Turn off the Show Caption option. Click on Finish.

  23. Position the bar chart over the gauge so that the scales match (Ctrl + arrow keys are useful here). The bullet chart is created.

How it works…

By matching the Static Max setting of the bar and the gauge (to the sum of target * 1.2), we ensure that the two charts will always size the same. The 1.2 factor makes the area beyond the target point of 20 percent of the length of the area before it. This might need to be adjusted for different implementations.

It is also crucial to ensure that the layer setting of the bar chart is at least one above the layer of the gauge chart. The default layer (on the Layout tab) for charts is Normal so, in that situation, you should change the bar chart's layer to Top. Otherwise, use the Custom option to set the layers.

There's more…

Using techniques such as this to combine multiple QlikView objects can help us create many other visualizations.

See also

  • The Brushing parallel coordinates recipe

  • The Creating a modified bullet chart in a straight table recipe