Skip to main content Skip to complementary content

Coloring your visualizations

Qlik Sense automatically colors visualizations as they are added to your web pages. You can manually set the colors in your visualizations to meet your requirements or preferences.

Overview

Not all Qlik Sense visualizations support the same coloring options. Additionally, some visualization types have specific behaviors or limitations when using certain coloring methods. Color methods supported by visualizations and their limitations are determined primarily by the kinds of data the visualizations displays. For example, visualizations that only support displaying measures cannot be colored by dimension or through using master dimensions.

The following table outlines color method support by visualization type.

Supported color methods
Visualization type Single color Multicolor By dimension By measure By expression
Mode "mode": "primary" "mode": "byMultiple" "mode": "byDimension" "mode": "byMeasure" "mode": "byExpression"
Bar chart Yes Yes Yes Yes Yes
Box plot Yes - - - -
Combo chart Yes Yes Yes Yes Yes
Distribution plot Yes - - - -
Gauge Yes - - - -
Histogram Yes - - - -
KPI Yes Yes - - -
Line chart Yes Yes Yes Yes Yes
List box - - - - -
Pie chart Yes Yes Yes Yes Yes
Pivot table - - - - Yes
Scatter plot Yes - Yes Yes Yes
Table - - - - Yes
Treemap Yes Yes Yes Yes Yes
Waterfall chart Yes - - - -

Coloring limitations and behaviors

Different visualizations have different behaviors with the methods of setting color in visualizations. This section outlines specific considerations when coloring different visualizations.

Line charts

Line charts do not support coloring by measure if they have two or more dimensions.

The color object

Most color options for visualizations are set in the color object in the options. You activate custom coloring by setting "auto": false which turns off auto-coloring.

If "auto": true, no other properties need to be defined in the color object.

The following parameters can be set in the color object:

Color by single color

When you color by single color, one color is used for all objects in the chart. Coloring by a single color is best used for visualizations, such as bar or line charts, with a single dimension and measure.

You color by single color by setting "mode": "primary". You then define the color in the paletteColor object, see paletteColor (object).

"color": { "auto": false, "mode": "primary", "useBaseColors": "off", "paletteColor": { "index": -1, "color": "#61a729" } }

Example of custom colour applied to all chart elements

Color by multiple colors

When you have multiple measures in a visualization, you can set "mode": "byMultiple" to color each measure with a different color. Qlik Sense offers a 12-color and a 100-color palette to apply to the visualization in the dimensionScheme property.

  • 12: 12 colors where all can be distinguished by people with vision deficiency.
  • 100: 100 colors where not all can be distinguished by people with vision deficiency

By default, 12 colors is selected as the color scheme dimensions.

"color": { "auto": false, "mode": "byMultiple", "dimensionScheme": "100" }

Example of multiple custom colours applied to individual chart elements

Color by dimension

When you color a visualization by a dimension, all values in the visualization are colored by the corresponding values in the dimension field selected. You set "mode": "byDimension" to color by dimension. You define the dimension to color by in the byDimDef object. Qlik Sense offers a 12-color and a 100-color palette to apply to the visualization in the dimensionScheme property.

  • 12: 12 colors where all can be distinguished by people with vision deficiency.
  • 100: 100 colors where not all can be distinguished by people with vision deficiency

By default, 12 colors is selected as the color scheme dimensions.

You can set "persistent": true which means that colors persist between selection states. If "persistent": false, colors will be changed and reassigned for different dimension values as selections are made in the visualization.

byDimension can only be used in conjunction with an attribute on the dimension to color by, as shown in the example below.

Columns: color by alternative added as "qAttributeDimensions" on the dimension to color by
{ "qDef": { "qFieldDefs": [ "FirResult" ], "qFieldLabels": [ "Driving accuracy" ] }, "qNullSuppression": true, "qAttributeDimensions": [ { "qDef": "FirResult", "id": "colorByAlternative" } ] }
Options: color object
"color": { "auto": false, "mode": "byDimension", "persistent": true, "dimensionScheme": "12", "byDimDef": { "label": "Driving accuracy", "key": "FirResult", "type": "expression" } }

Example of custom colour applied by chart property

Color by measure

When you color a visualization by a measure, all values in the visualization are colored by a gradient or class based on the values in the selected measure. Coloring by measure is useful when you want to clearly see objects colored by their corresponding measure value.

You set "mode": "byMeasure" to color by measure. You then have four available color schemes that you define in the measureScheme property.

  • sg: (sequential gradient) the transition between the different color groups is made using different shades of colors. High measure values have darker hues
  • sc: (sequential classes) the transition between the different color groups is made using distinctly different colors.
  • dg: (diverging gradient) used when working with data that is ordered from low to high, for instance, to show the relationship between different areas on a map. Low and high values have dark colors, mid-range colors are light.
  • dc: (diverging classes) can be seen as two sequential classes combined, with the mid-range shared. The two extremes, high and low, are emphasized with dark colors with contrasting hues, and the mid-range critical values are emphasized with light colors.

You can reverse the color scheme by setting "reverseScheme": true which switches which colors are used for low values and which colors are used for high values in the selected color scheme.

You can define a custom measure value range by setting "autoMinMax": false. You then define measureMin and/or measureMax depending on how you want to set the range.

Measure range properties
Name Type Description
autoMinMax Boolean

Set to false to define custom color range. Custom color range is only applicable when coloring is by measure ("mode": "byMeasure") or by expression ("mode": "byExpression").

When coloring is by expression, "expressionIsColor": "false" must be set for custom color range to work.

Default: true

measureMin Value Expression Container

Set the min value for the color range.

Only applicable if autoMinMax: false. Can be used in conjunction with measureMax or by its own.

measureMax Value Expression Container

Set the max value for the color range.

Only applicable if autoMinMax: false. Can be used in conjunction with measureMin or by its own.

"color": { "auto": false, "mode": "byMeasure", "measureScheme": "dc", "reverseScheme": true, "autoMinMax": true, "byMeasureDef": { "label": "Pts", "key": "Avg(Stableford)", "type": "expression" }, "altLabel": "Pts" }

Example bar chart with color applied by measure

Color by expression

Coloring by expression applies colors to a visualization based on a user-defined expression. This enables you to use expressions to define both the colors used and the values upon which the colors are applied in a visualization. You could, for example, use an expression to set conditional colors in a chart.

Supported formats for color expressions are: RGB, ARGB, and HSL.

You set "mode": "byExpression" to color by expression. Details are then defined in the expressionIsColor, expressionLabel and colorExpression properties.

byExpression can only be used in conjunction with an attribute expression on the first measure, as shown in the example below.

Columns: color expression added as "qAttributeExpressions" on first measure
{ "qDef": { "qLabel": "Frequency", "qDef": "Count(NetScoreName)" }, "qAttributeExpressions": [ { "qExpression": "If(NetScoreDiff<0,RGB(82, 162, 204),\nIf(NetScoreDiff>0,RGB(248, 152, 29),RGB(145, 194, 106)))", "id": "colorByExpression" } ] }
Options: color object
"color": { "auto": false, "mode": "byExpression", "expressionIsColor": true, "expressionLabel": "", "colorExpression": "If(NetScoreDiff<0,RGB(82, 162, 204),\nIf(NetScoreDiff>0,RGB(248, 152, 29),RGB(145, 194, 106)))" }

Example chart with color applied by expression

Color by expression in tables and pivot tables

Expressions can be used to color table and pivot table backgrounds and text. This enables you to use expressions to define both the colors used and the conditional values upon which the colors are applied in a visualization. You could, for example, use expressions to change text and background colors depending on the values within different table cells.

Cell background color in straight tables

Cell background color is applied as an attribute expression on the applicable column measure with "id": "cellBackgroundColor".

"qAttributeExpressions": [ { "qExpression": "If(Avg(FwHit)>0.7,RGB(145, 194, 106))", "id": "cellBackgroundColor" } ]

Text color in straight tables

Text color is applied as an attribute expression on the applicable column measure with "id": "cellForegroundColor".

"qAttributeExpressions": [ { "qExpression": "If(Avg(FwHit)<0.5,RGB(255, 115, 115))", "id": "cellForegroundColor" } ]

Using both background color and text color in a straight table column

When defining both background color and text color for a measure, you include two definitions in the attribute expression .

"qAttributeExpressions": [ { "qExpression": "If(Avg(FwHit)>0.7,RGB(145, 194, 106))", "id": "cellBackgroundColor" }, { "qExpression": "If(Avg(FwHit)<0.5,RGB(255, 115, 115))", "id": "cellForegroundColor" } ]

Example straight table with background and text color modified by expression

Cell background color and text color in pivot tables

The qAttributeExpressions property behaves differently in pivot tables compared to in straight tables. For pivot tables, it consists of two arrays, where the first array is for defining the background color and the second array is for defining the text color. There is therefore no need to define "id": "cellBackgroundColor" or "id": "cellForeroundColor" for pivot tables.

"qAttributeExpressions": [ { "qExpression": "If(Avg(FwHit)>0.667, RGB(145, 194, 106))" }, { "qExpression": "If(Avg(FwHit)<0.5, RGB(255, 115, 115))" } ]

Example pivot table with background and text color modified by expression

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!