Skip to main content Skip to complementary content

Using chart level scripting in visualizations

With chart level scripting, you can add script-like functionality to the results of a visualization. It complements chart expressions, as chart level scripting include control statements, such as loops and recursive actions, for more complex mathematical calculations. You can also modify multiple columns, as long as a placeholder exists in the chart, and add new rows to a result.

You can use chart level scripting on most visualization types and you access it from the properties panel. Some visualizations or specific configurations, do not support chart level scripting. In those cases, you cannot access chart level scripting from the properties panel, or you will receive an error message.

When modifying chart data, you use a sub-set of the Qlik Sense script which consists of a number of statements. See Chart level scripting.

You enable chart level scripting in the app settings. When enabled, a Scripts control is available on the Data section of the properties panel for a visualization. See Turning on chart level scripting.

Even when disabled, existing chart scripts will be processed. Disabling once authored content has been developed is a useful way of preventing new chart scripts being created by other users.

Adding a chart script to a visualization

You can add chart scripts to existing visualizations, or when you create new visualizations.

Chart level scripting must be enabled in the app before you can add a chart script to a visualization, see Turning on chart level scripting.

You must be in EditEdit sheet mode with Advanced options turned on to be able to add a chart script to a visualization.

Adding chart scripts to a new visualization

  1. Drag the visualization from the assets panel onto the sheet, or double-click the visualization.
  2. On the Data tab, add dimensions and measures to the visualization.

  3. Also on the Data tab, add a chart script in the Scripts section.

    You can add maximum five chart scripts per visualization.

Adding chart scripts to an existing visualization

  1. When in EditEdit sheet mode, select the visualization.
  2. On the Data tab, add a chart script in the Scripts section.

    You can add maximum five chart scripts per visualization.

Example

This example assumes that you have created a visualization, for example a bar chart, and that you have added a dimension and a measure.

This example takes the values of the first dimension and puts them in the first measure in reverse order.

Let P = HCNoRows();
For J = 1 to P
Put #hc1.measure.1(J) = HCValue(#hc1.dimension.1, P - J + 1);
Next

Limitations of chart level scripting

Chart level scripting cannot be used in the standard edit mode.

Chart level scripting does not work for visualizations with Chart suggestions enabled.

You can add maximum five chart scripts per visualization.

Chart level scripting is not available for the following visualizations:

  • Bar charts in stacked mode

    If you have created a chart script in grouped mode and switch to stacked mode, an invalid hypercube error will be shown.

  • Box plot

  • Button

  • Distribution plot

  • Filter pane

  • Line charts with two dimensions

  • Pivot table

  • Text & image

  • Treemap

  • Grid Chart (Visualization bundle)

  • Trellis Container (Visualization bundle)

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!