Qlik Network Chart
Qlik Sense extension to visualize networks data based on library vis.js (http://visjs.org). Tested with Qlik Sense 2.2.3.
Dimensions
4 dimensions are mandatory :
- node identifier
- node label
- node parent identifier
- node group
Measures
The measures are optional
- tooltip : expression that will be push in the tooltip when hover on a node
- node value : used to scale the node size
- edge value : used to scale the edge width
Additional network settings
- Edge Type : select type of curve between nodes
- Node Shape : dot, square, diamond, triangle ...
- Display Edge Value : switch to display the measures on edge curves
- Position Edge Label : top, bottom, middle, horizontal
- Display Shadow : switch to enable shadow effects behind edge and nodes
Sample
QVF based on characters from Victor Hugo's novel , Les Misérables.

Data Limit
Starts having issues stabilizing(transforming into untangled view) at around 100-200 nodes depending on dataset.
Getting Started
Installation
-
Download the extension zip,
qlik-network-chart_<version>.zip, from the latest release(https://github.com/qlik-oss/network-vis-chart/releases/latest) -
Install the extension:
a. Qlik Sense Desktop: unzip to a directory under [My Documents]/Qlik/Sense/Extensions.
b. Qlik Sense Server: import the zip file in the QMC.
Developing the extension
If you want to do code changes to the extension follow these simple steps to get going.
-
Get Qlik Sense Desktop
-
Create a new app and add the extension to a sheet.
-
Clone the repository
-
Run
npm install -
Set the environment variable
BUILD_PATHto your extensions directory. It will be something likeC:/Users/<user>/Documents/Qlik/Sense/Extensions/<extension_name>. -
You now have two options. Either run the watch task or the build task. They are explained below. Both of them default to development mode but can be run in production by setting
NODE_ENV=productionbefore running the npm task.a. Watch:
npm run watch. This will start a watcher which will rebuild the extension and output all needed files to thebuildFolderfor each code change you make. See your changes directly in your Qlik Sense app.b. Build:
npm run build. If you want to build the extension package. The output zip-file can be found in thebuildFolder.
Original Author
Michael Laenen