Questions tagged [angular-highcharts]
90 questions
0
votes
1 answer
HighCharts - set minimum Tick Interval
I have a column highchart where I have two series, out of which the data is something as follows :
series1 : [10000, 20000, 30000, 40000, 50000]
series2 : [500, 600, 800, 1200, 1400]
When i have both the axes, It is required to set a tick interval…

Gauri Kesava Kumar
- 466
- 2
- 15
0
votes
1 answer
Highcharts network graph custom link labels
i'm trying to implement a network graph, and in my case the edges must be labeld. For example, i'm fetching data like this
[{from: "A", to: "B", "label":"text1"},{from: "B", to: "C", "label": "text2"}]
so in the graph it must be like this:…

hamza saber
- 511
- 1
- 4
- 18
0
votes
2 answers
Type '{ text: string; }' is not assignable to type 'TitleObject'. in highcharts
When I use HighCharts angular so I get this error,
Type '{ text: string; }' is not assignable to type 'TitleObject'.
const sampleData: Highcharts.Chart = {
chart: {
type: 'column',
},
title: { text: 'Total Predected Revenue…

Shubham Patil
- 117
- 3
- 3
- 13
0
votes
1 answer
Angular 7 Highchart Node.marker not working on page load
I am using Angular 7 with Highchart at my dashboard which loads at first. When the page is loaded I want the marker to be of radius:50 but when the page is loaded it does not set the radius to 50. When I click to other router link and come back…

Iswar
- 2,211
- 11
- 40
- 65
0
votes
1 answer
Highcharts Angular Chart not redrwan from renderer.button event
In the chart, there are 2 custom buttons to update series to redraw the chart(toggle of views) by Percentage(%) or by count. In the callback function of the renderer.button, When I click count button I'm updating the series data by changing the…

pupil
- 234
- 1
- 8
- 23
0
votes
1 answer
Highcharts Boxplot - box with lower, upper quartile and median is not displaying when min and max are null of a category
navigate to below fiddle and find first category is not showing boxplot.
my expectation is that highcharts should show q1,q3 and median box.
is there a way to render boxplot without min and…

Rammohan arabiri
- 63
- 1
- 5
0
votes
1 answer
Display Date and time on highcharts
I have the following data
firstData = [
["2019-11-24", "12:38:54"],
["2019-11-21", "07:06:29"],
["2019-11-20", "19:26:37"],
["2019-09-26", "19:56:00"] ]
secondData = [
["2019-09-26", "10:26:00"],
["2019-11-20", "06:52:34"],
…

John B.
- 3
- 1
0
votes
2 answers
Highchart Gantt chart Navigator color
I am rendering a Gantt chart with different series color. The colors are somehow not reflected on the navigator at the bottom. How can I display the same colors in both series and navigator?
Fiddle link : Fiddle
Note: These colors are going to be…

Girl Geek
- 79
- 1
- 7
0
votes
1 answer
How can I format the Highcharts gantt chart to be a dashed line instead of a solid line?
I have made the following gantt chart using Highcharts Gantt chart. However, i want a part of the line to be dashed instead of solid. Something like this -
However i'm unable to make it dashed. It always appears to be solid. How do i make it dashed…

Shubham Singh
- 3
- 1
0
votes
0 answers
Column chart transform values changing intermittently leading to chart not being shown
Sometimes on rendering of chart, the values of css transform in column chart changes due to which chart doesn't render properly even though the data is present.
I tried debugging the code and found the following in the html rendered:
…

Akhil Singh
- 3
- 2
0
votes
0 answers
Site navigation breaks after exporting once with angular-highcharts
Using Angular 8.2.4, angular-highcharts 8.0.3 and highcharts 7.2.0.
I've followed the Client side export section of the docs as well as their jsFiddle to include an offline export feature in my app; everything works fine until I export the…

Scaramouche
- 3,188
- 2
- 20
- 46
-1
votes
1 answer
How to display navigator under area type highchart?
In the below forked example of area type chart, how can I add a navigator for different years ?
I have added config to show navigator, but it doesn't appear.
navigator: {
enabled: true
series: [{
name: 'USA',
showInNavigator: true,
like…

dota2pro
- 7,220
- 7
- 44
- 79
-1
votes
1 answer
Highcharts not printing points from API call in Angular
This is how my series object looks that is being passed to the highcharts.
[0 … 99]
0:
data:
z: 52.4421997
x: 1301702400000
y: 54.9129982
__proto__: Object
name: "Dummy"
…

Kushagra Agarwal
- 3
- 2
-1
votes
2 answers
Integration Angular 8 with Highchart 7
I'm trying to show highstock UI(Using Hightchart 7) from my angular application(using Angular 8) but it's not appear. Below, the code. Maybe, I have a missing step, missing configuration, missing something. I have review other entry here but the…

Yuniel Alvarez
- 1
- 1
- 1
-2
votes
1 answer
I'm currently practicing on highcharts-angular and I have this problem (details below)
I do have only a problem in the app.component.html. I have successfully imported/install all necessary library in my workstation. Below are the codes I am practicing. My current IDE is VS code. But this problem occurs:
Can't bind to 'Highcharts'…

Jayson Bagalayos
- 7
- 6