-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not compatible with latest Highcharts 11.4.6 #385
Comments
Changing our imports from this: |
Looking at the wrapper code:
I see that the
|
I tried adding the textpath module, but still same issue:
|
Hi @rbirkgit! I've tested it with Could you please create a demo/repo where the issue is visible? |
I found the difference needed to reproduce. We also had this import. Without, it compiles.
|
@rbirkgit With an additional |
We stated that the import { HighchartsChartModule } from 'highcharts-angular';
import type HighchartsType from 'highcharts';
import Highcharts from 'highcharts/es-modules/masters/highcharts.src';
import 'highcharts/es-modules/masters/highcharts-more.src';
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet, HighchartsChartModule],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
Highcharts: typeof Highcharts = Highcharts;
chartOptions: HighchartsType.Options = {
series: [{
data: [1, 2, 3],
type: 'line'
}]
};
} |
Thanks for quick fix. Looking forward to next update! |
Curious as we prefer waiting for updated version instead of adding workarounds. What rough timeframe do you think it will be for updated version to be released? |
We are planning to add some new things so a bigger release should be at the end of summer but we can release a patch within a week with this fix 😉 |
v4.0.1 has been just released 🎉 |
Thanks! Works great! |
Describe the bug
We updated from Highcharts 11.4.3 to 11.4.6 and now get compile errors.
Expected behavior
Expect code to build
Demo
This is our html code:
Steps required to recreate the problem in the demo:
Setup used
etc.
The text was updated successfully, but these errors were encountered: