@nebula.js/sn-kpi

KPI supernova

Usage no npm install needed!

<script type="module">
  import nebulaJsSnKpi from 'https://cdn.skypack.dev/@nebula.js/sn-kpi';
</script>

README

@nebula.js/sn-kpi

A KPI supernova, based on the Qlik Sense nativa KPI object.

CircleCI Maintainability Test Coverage

KPI preview

Installing

If you use npm: npm install @nebula.js/sn-kpi.

You can also load through the script tag directly from https://unpkg.com.

Usage


import { embed } from '@nebula.js/stardust';
import kpi from '@nebula.js/sn-kpi';

// 'app' is an enigma app model
const nuked = embed(app, {
  types: [{ // register the kpi
    name: 'kpi',
    load: () => Promise.resolve(kpi);
  }]
});

nuked.render({
  element,
  type: 'kpi',
});

See full example