Questions tagged [angular-highcharts]

90 questions
1
vote
0 answers

Collapsible node in highchart network graph in Angular application

I am also working on this feature like onclick node would be collapsible in network graph but I am stuck into error. Error is Property 'linksHidden' does not exist on type 'Point'.ts(2339) I am using highchart in angular application. I am using…
1
vote
1 answer

Angular 7 - Dynamic HighChart update

In my angular solution I need to display some charts using Highcharts. In my component.ts I have the following code: import * as Highcharts from "highcharts"; highcharts = Highcharts; chartOptions = { chart: { type: "spline", …
pedrodotnet
  • 788
  • 3
  • 16
  • 34
1
vote
1 answer

Two tool tip for two different charts

I have two charts line and scatter together. I want two different tool tip for two different graphs. I have set for one but I couldn't do for another. Please help me out. Code this.chart = new Chart({ tooltip: { xDateFormat:…
Chris
  • 1,236
  • 2
  • 18
  • 34
0
votes
0 answers

ERROR: Uncaught (in promise): TypeError: chartModule is not a function

I was upgrading from angular 11 to 12, I have resolved all migration errors, Terminal is free of errors but Application is showing blank showing following message on console. console log Here's my angular version details:Angular-version Here's…
0
votes
1 answer

Need to highlight individual columns in highcharts when clicked

So basically, the above is the reference idea on the webpage, so the top 4 are each individual highchart's chart which has a code like this.chart2 = new Chart( { chart: { type: 'column', }, title: { …
Nid
  • 23
  • 4
0
votes
1 answer

How to automatically export (and download) a chart made with Highcharts in Angular?

I work in an Angular project. I built a chart with the Highcharts library and the Angular-Highcharts package. The chart is well displayed. The following step is to export automatically the chart by using the Highcharts exportChart method but it does…
Julien
  • 45
  • 1
  • 3
  • 15
0
votes
0 answers

Highcharts - Column chart - How to change column alignments?

I have column chart in 3D. I know I can set alpha, beta and depth properties to change the angle. but in a latest requirement, I cannot set these angles to achieve required viewing angles. Currently it looks like this Desired look I have tried…
0
votes
1 answer

HighCharts - Donut Chart 3D animation is different than Non-3D Donut chart

I am trying to implement the Stacked Donut Chart in 3D. But the animation seems to be like fade-in. Whereas if I set options3d.enabled = false (means non-3D donut chart) then the animation is like circular in clockwise manner. I am not able to make…
0
votes
1 answer

HighCharts 3D - Any option to animate the columns one after the other?

I am trying to build highcharts column chart in 3D where all the columns appear at the same time. But our business requirement is that we want each column to appear one at a time with custom animation. I have tried a hack where I used load event of…
0
votes
1 answer

Is highchart rendered in dom when the data passes to it is incorrect?

Often we see that highcharts are rendered perfectly when all data is passed correctly to the chart. But sometimes when there is some mistake in data we don't see highchart appear on the screen. My question is what happens to chart when data is…
0
votes
1 answer

Set initial Zoom on a Angular HighCharts Map

I'm using: @angular@15.2.7 highcharts-angular@2.10.0 highcharts@10.3.3 I've initialised my map like this: import { Component, OnInit } from '@angular/core'; import { ArtistsService } from '../_services/artists.service'; import { ActivatedRoute }…
A. Nurb
  • 496
  • 1
  • 3
  • 17
0
votes
0 answers

Is it possible to show wind direction(wind barbs) on map using highcharts?

We are looking for a option where we can show wind directions on a map. Is it possible to do it with Highchart and if yes can somebody give us a direction on the same? I tried to place wind barbs as a mappoint but no luck.
0
votes
0 answers

Property 'getSVG' does not exist on type Highcharts PDF exporting

I am trying to download the highchart graph as pdf in Angular. Here is the code to generate is as svg and download. exportData() { const that = this; Highcharts.getSVG = function (charts, options, callback) { var svgArr = [], …
0
votes
1 answer

Export highchartgraph with tooltips and labels

I am trying to export the highcharts graphs as pdf. It seems to be exporting correctly but the tooltips or any kind of labelings are missing. I have a combination of 2 graphs circular and linear progress bars which shows the name and progress of…
Athulya Ratheesh
  • 291
  • 4
  • 22
0
votes
1 answer

Customize tooltip for bands in highcharts angular

I am trying to customize the band names in highcharts graph in angular. The following is the code snippet for the same. But it is returning undefined for the band name. Here is the working code Below is the code snippet for band plotting { name:…