admin管理员组文章数量:1414628
I am integrating DrillDown from Highcharts into my angular 19 application.
Here is the error I get from the browser console:
ERROR TypeError: Ye(...) is not a function
Here are the libraries I install:
1. "highcharts": "^12.1.2".
2. "highcharts-angular": "^4.0.1"
What I did on my drilldown-chartponent.ts
:
import {Component, OnInit} from '@angular/core';
import * as Highcharts from 'highcharts';
import Drilldown from 'highcharts/modules/drilldown';
import { HighchartsChartModule } from "highcharts-angular";
// Initialize the drilldown module
Drilldown(Highcharts);
@Component({
selector: 'app-drilldown-chart',
imports: [HighchartsChartModule],
templateUrl: './drilldown-chartponent.html',
styleUrl: './drilldown-chartponent.scss'
})
export class DrilldownChartComponent implements OnInit {
ngOnInit(): void {
this.loadChart()
}
Highcharts: typeof Highcharts = Highcharts;
chartOptions: Highcharts.Options = {};
loadChart(): void {
this.chartOptions = {
// In here is my chart details
};
}
}
And this in my drilldown-chartponent.html
:
<highcharts-chart
[Highcharts]="Highcharts"
[options]="chartOptions"
style="width: 100%; height: 400px; display: block;">
</highcharts-chart>
I have try using the Pie and Line charts can it works as expected.
But when I introduce this Drilldown(Highcharts); the page no longer loads.
I am integrating DrillDown from Highcharts into my angular 19 application.
Here is the error I get from the browser console:
ERROR TypeError: Ye(...) is not a function
Here are the libraries I install:
1. "highcharts": "^12.1.2".
2. "highcharts-angular": "^4.0.1"
What I did on my drilldown-chartponent.ts
:
import {Component, OnInit} from '@angular/core';
import * as Highcharts from 'highcharts';
import Drilldown from 'highcharts/modules/drilldown';
import { HighchartsChartModule } from "highcharts-angular";
// Initialize the drilldown module
Drilldown(Highcharts);
@Component({
selector: 'app-drilldown-chart',
imports: [HighchartsChartModule],
templateUrl: './drilldown-chartponent.html',
styleUrl: './drilldown-chartponent.scss'
})
export class DrilldownChartComponent implements OnInit {
ngOnInit(): void {
this.loadChart()
}
Highcharts: typeof Highcharts = Highcharts;
chartOptions: Highcharts.Options = {};
loadChart(): void {
this.chartOptions = {
// In here is my chart details
};
}
}
And this in my drilldown-chartponent.html
:
<highcharts-chart
[Highcharts]="Highcharts"
[options]="chartOptions"
style="width: 100%; height: 400px; display: block;">
</highcharts-chart>
I have try using the Pie and Line charts can it works as expected.
But when I introduce this Drilldown(Highcharts); the page no longer loads.
Share Improve this question asked Feb 23 at 9:37 Anana AristotleAnana Aristotle 11 silver badge1 bronze badge1 Answer
Reset to default 1From the version 12, HighCharts no longer work with the module factory. Hence you need to do the migration for importing the module(s) as below:
import * as Highcharts from 'highcharts';
import 'highcharts/modules/drilldown';
Demo @ StackBlitz
本文标签: I am having an issue integrating DrillDown from Highcharts with Angular 19Stack Overflow
版权声明:本文标题:I am having an issue integrating DrillDown from Highcharts with Angular 19 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745159007a2645349.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论