A basic mekko chart supernova aimed to be used in nebula.js.
If you use npm: npm install @nebula.js/sn-mekko-chart
. You can also load through the script tag directly from https://unpkg.com.
import nucleus from '@nebula.js/nucleus';
import mekko from '@nebula.js/sn-mekko-chart';
// 'app' is an enigma app model
const nuked = nucleus(app, {
types: [{ // register the mekko chart
name: 'mekko',
load: () => Promise.resolve(mekko);
}]
});
nuked.create({
type: 'mekko',
}, {
element
});