Search code examples
angular5highchartsangular2-highcharts

TreeMap chart of Highcharts in Angular


I'm running into issues and not been able to render TreeMap chart. Other chart types like Line works fine in my App. The error I get is Error# 17. I'm using Angular 5. Can you please share any working sample using Angular5 and Highcharts for TreeMap.

Appreciate your quick help.


Solution

  • Check official docs

    Import like this

    import * as  Highcharts from 'highcharts';
    import More from 'highcharts/highcharts-more';
    import Tree from 'highcharts/modules/treemap';
    import Heatmap from 'highcharts/modules/heatmap';
    More(Highcharts);
    Tree(Highcharts);
    Heatmap(Highcharts);
    

    stackblitz demo