Questions tagged [angular-highcharts]
90 questions
3
votes
2 answers
Add custom buttons in Angular Highcharts Line Chart
I'm trying to add 2 custom buttons in Angular Highcharts Line chart in the exporting property
exporting: {
enabled: true,
buttons: {
customButton: {
text: 'Custom Button',
click: () => {
…

pupil
- 234
- 1
- 8
- 23
2
votes
0 answers
Highcharts.chart() in Angular
How should I be using Highcharts in Angular?
I imported it
import * as Highcharts from 'highcharts'
then tried
Highcharts.chart(tag, options)
where tag is a string id of an HTML element, and options is the plot options. But typescript claims there…

Edan Bainglass
- 43
- 1
- 5
2
votes
2 answers
Tool tip for static plotline in y-axis
I have drawn two static lines in my chart to indicate high and low range. I could keep labels for the line but I can't keep a tooltip for the the static line. Is there any way I can do this?
yAxis: {
plotLines: [{
value: 70,
width: 1,
…

Felix Christo
- 301
- 1
- 3
- 19
1
vote
2 answers
How we can create Highcharts treegraph box layout in angular?
enter image description here
Cannot find module 'highcharts/modules/treegraph' or its corresponding type declarations.
10 import HCTree from 'highcharts/modules/treegraph';
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I checked the…

Hemant Yadav
- 11
- 1
1
vote
1 answer
How to create Multiple Lines draggable on highcharts?
Can someone make these red lines draggable on Highcharts
Tried with plotlines the elements is not dragging
On moving 1 line all lines should move
If i select 1st red line then the second red line should also move with same points.
Code Refence:…

Gaurav Jain
- 11
- 3
1
vote
1 answer
Highcharts map doesn't show all areas simultaneously
Im working on this issue for a few hours right now, for some reason highcharts map is unable to show all areas in the same time, and shows me only the last selected one.
A few pictures for example:
here is the chartOptions:
chartOptions:…

Nir Berko
- 1,368
- 1
- 13
- 33
1
vote
1 answer
Highcharts: yAxis showing exponential values
A sample of my code is here:
const chart = Highcharts.stockChart('container', {
rangeSelector: {
selected: 1,
inputBoxStyle: {
right: '80px'
}
},
yAxis: [{
type: 'logarithmic',
…

Subhabrata Banerjee
- 442
- 1
- 4
- 18
1
vote
2 answers
Cannot read property 'forExport' of undefined when leaving the page with Highcharts chart
I can reproduce the problem in a very simple Angular-Highcharts application. When I retrieve the data from the server, and then leave the page with Highcharts chart, I am getting this error:
Cannot read property 'forExport' of undefined
at…

Felix
- 9,248
- 10
- 57
- 89
1
vote
1 answer
stacked bar chart using angular-highchart
var array= [{ name: "LTNS", id: 1, percentage: 60, price: 900000 },
{ name: "NPCS", id: 2, percentage: 30, price: 342000 },
{ name: "MARCOS", id: 3, percentage: 10, price: 600000 }]
Using above array i need build stacked bar chart…

Nadeem Khan
- 21
- 2
1
vote
1 answer
Firefox Highcharts is not showing up but it's all OK in Chrome and Edge
The following pie chart shows up in Chrome and Edge but not in Firefox (latest vers 88).
I'm trying to horizontally align two divs. On the left a form and on the right a chart.
I omit all the details inside the form html because I think they're not…
user11323942
1
vote
0 answers
Angular Highchart data is not updating on toggle button
Data is not updating on toggle button, while updated data is provided to chart. Chart is not reflecting updated data. Please help me how to fix?
Note: I am using Angular Highcharts official wrapper.
"highcharts-angular": "^2.10.0"

Mueed Ullah Anwar
- 49
- 6
1
vote
0 answers
Bar High Chart with different positive and negative scale interval values
Highcharts.chart('container', {
credits: {
enabled: false,
},
legend: {
enabled: false
},
chart: {
type: "bar",
height: 180,
…

Ezzah Waseem
- 37
- 4
1
vote
0 answers
Angular universal angular-highcharts error
When I switch project to angular universal, I get this error.
ERROR { Error: Uncaught (in promise): TypeError: Cannot read property 'parts/Chart.js' of undefined
I already wrapped chart based codes inside platform checking. But still face the…

Mr.Bhat
- 397
- 5
- 15
1
vote
0 answers
Type 'number' has no properties in common with type 'XrangePointOptionsObject'
I'm getting this error Type 'number' has no properties in common with type 'XrangePointOptionsObject'. I want to add a bar chart using angular highchatrs in my angular project but I'm not able to add because of this error. So can you please help me…

Shubham Patil
- 117
- 3
- 3
- 13
1
vote
1 answer
How to fix this error Type 'number' has no properties in common with type 'XrangePointOptionsObject'
I'm getting this error Type 'number' has no properties in common with type 'XrangePointOptionsObject'. I want to add bar chart using angular highchatrs in my angular project but I'm not able to add because of this error. So can you please help me to…

Shubham Patil
- 117
- 3
- 3
- 13