我遇到问题但无法渲染TreeMap图表。其他图表类型如Line在我的App中运行正常。我得到的错误是错误#17。 我正在使用Angular 5.你能否使用Angular5和Highcharts for TreeMap分享任何工作样本。
感谢您的快速帮助。
答案 0 :(得分:4)
检查官方docs
像这样导入
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);