如何在Angular 4中添加Google图表
发布时间:2020-12-17 08:52:12 所属栏目:安全 来源:网络整理
导读:如何在角度4应用程序中集成谷歌图表? 我读了SO问题here的答案,但我认为它不完整.基本上,我正在使用GoogleChartComponent和扩展它的另一个组件尝试与前一个答案相同的策略.出现两个错误,第一个是对子组件的super()缺少调用,第二个是在此代码中调用“new” cr
如何在角度4应用程序中集成谷歌图表?
我读了SO问题here的答案,但我认为它不完整.基本上,我正在使用GoogleChartComponent和扩展它的另一个组件尝试与前一个答案相同的策略.出现两个错误,第一个是对子组件的super()缺少调用,第二个是在此代码中调用“new” createBarChart(element: any): any { return new google.visualization.BarChart(element); } 我收到错误“google.visualization.BarChart不是构造函数”. 我看到其中一条评论也提到了使用< ng-content>用于数据投影,但没有明确概述. 在尝试提出“好”的问题时,这是我的GoogleChartComponent: export class GoogleChartComponent implements OnInit { private static googleLoaded: any; constructor() { console.log('Here is GoogleChartComponent'); } getGoogle() { return google; } ngOnInit() { console.log('ngOnInit'); if (!GoogleChartComponent.googleLoaded) { GoogleChartComponent.googleLoaded = true; google.charts.load('current',{ 'packages': ['bar'] }); google.charts.setOnLoadCallback(() => this.drawGraph()); } } drawGraph() { console.log('DrawGraph base class!!!! '); } createBarChart(element: any): any { return new google.visualization.BarChart(element); } createDataTable(array: any[]): any { return google.visualization.arrayToDataTable(array); } } 我的子组件扩展了它: @Component({ selector: 'app-bitcoin-chart',template: ` <div id="barchart_material" style="width: 700px; height: 500px;"></div> `,styles: [] }) export class BitcoinChartComponent extends GoogleChartComponent { private options; private data; private chart; // constructor() { // super(); // console.log('Bitcoin Chart Component'); // } drawGraph() { console.log('Drawing Bitcoin Graph'); this.data = this.createDataTable([ ['Price','Coinbase','Bitfinex','Poloniex','Kraken'],['*',1000,400,200,500] ]); this.options = { chart: { title: 'Bitcoin Price',subtitle: 'Real time price data across exchanges',},bars: 'vertical' // Required for Material Bar Charts. }; this.chart = this.createBarChart(document.getElementById('barchart_material')); this.chart.draw(this.data,this.options); } }
google.visualization.BarChart是’corechart’包的一部分
需要更改加载语句… google.charts.load('current',{ 'packages': ['corechart'] }); ‘bar’包用于Material图表版本 但是,Material Chart不支持许多配置选项… 有关不受支持的选项的完整列表 – > Tracking Issue for Material Chart Feature Parity (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |