BaseChart
Result
Loading...
Live Editor
Extending Base Chart
This demo relies on a separate bundle of ema.charts or explicity using the Highcharts modules. This bundle includes the Sankey and Organization modules.
From the CDN
<script
src="http://emacontent.com/bundles/1.7.3/ema.charts.accessibility.more.8.0.4.js"
type="text/javascript"
></script>
When Bundling
Explicity extend Highcharts with Sankey and Organization.
import Highcharts from 'highcharts';
import { default as TreeMap } from 'highcharts/modules/treemap';
import { default as More } from 'highcharts/highcharts-more';
import { default as Accessibility } from 'highcharts/modules/accessibility';
import { default as Sankey } from 'highcharts/modules/sankey';
import { default as Organization } from 'highcharts/modules/organization';
TreeMap(Highcharts);
More(Highcharts);
Accessibility(Highcharts);
Sankey(Highcharts);
Organization(Highcharts);
Result
Loading...
Live Editor