1
我正在使用angular2-highcharts,並且我已成功設置它。在Angular2中使用Highcharts繪製雷達圖表
如果我使用下面的代碼
constructor(private emotionsService: EmotionsService) {
this.options = {
title: { text : 'dynamic data example'},
series: [{
data: [29.9, 71.5, 106.4, 129.2],
}]
};
}
options: HighchartsOptions;
它工作得很好。 但是,我想繪製一張雷達圖表/ Spider Web。我在選項中添加了以下行。
xAxis: {
categories: ['Sales', 'Marketing', 'Development', 'Customer Support',
'Information Technology', 'Administration'],
},
yAxis: {
gridLineInterpolation: 'polygon',
},
它抱怨物業不兼容如下:
chart: { polar: boolean; }; xAxis: { categories: string[]; }; yAxis: { gridLineInterpolation: s...' is not assignable to type 'HighchartsOptions'.
[0] Types of property 'yAxis' are incompatible.
是否有可能畫出蜘蛛圖與此NPM模塊。
我加入'要求( 'highcharts/highcharts-more.js')(Highcharts);'在module.ts文件。 – user3288346
而且運作良好或者你仍然有問題? –
它適用於此。感謝你的回答。如果你可以在你的答案中修改它,我將接受它。 – user3288346