Questions tagged [angular2-highcharts]

For questions directly related to angular2-highcharts library.

angular2-highcharts is a Highcharts wrapper providing charting components for Angular

238 questions
0
votes
0 answers

Highcharts xAxis Zoom Points Disappear, Angular5

I am using https://www.npmjs.com/package/highcharts-angular to produce highcharts in Angular. When I set the xAxis min,max and zoom, the points disappear. When I do not set the min,max, the points do not disappear on zoom. Here is my chart options…
Mocha
  • 2,035
  • 12
  • 29
0
votes
1 answer

HighChart stacked bar chart scrollbar issue

When using highstock with stacked bar chart and scroll bar is enabled, which has 100 categories, I don't see the data on the chart when I start scrolling. It works fine upto 50 categories https://jsfiddle.net/shashi3337/5xn92uht/1/ function test()…
Shashi
  • 1,112
  • 2
  • 17
  • 32
0
votes
1 answer

Highcharts setData not working when using same array reference

So I have en array with some data. I use the setData method to set the data on my series like so: chartInstance.series[0].setData(chartData); This works fine the first time, but let's say I change some of the data in chartData and want to apply it…
Jesper
  • 2,644
  • 4
  • 30
  • 65
0
votes
1 answer

Mark a point and draw plot lines in Multi Series Highchart

I am using highcharts. I want to make a chart like in the image below. Need to mark a point where a line drawn from series 1 highest points connect to the series 2(shown in the image below). Couldn't find any useful resource. Any leads would be…
monica
  • 1,454
  • 14
  • 28
0
votes
0 answers

How to show 'spline' highchart with date on x axis and time on y axis?

i am using angular 2 highchart and i want to show 'spline' highchart with date on x axis and time on y axis and my chart lines going as linear, its because i have same datetime ticks for both axis. i want to segregate those axis as Date and Time,…
Vipin Saini
  • 39
  • 1
  • 2
  • 9
0
votes
1 answer

Ionic 3 Highcharts not visible

I have the following flow in my application: firstpage --> secondpage (contains highchart) --> thirdpage --> fourthpage --> secondpage When I go from firstpage to secondpage, the chart is visible. Also when I go back from thirdpage to secondpage, I…
farahm
  • 1,326
  • 6
  • 32
  • 70
0
votes
1 answer

Handdrawn Lines for Highcharts

How would you extend Highcharts to accomplish a "hand-drawn" effect (example: https://www.amcharts.com/demos/column-and-line-mix/?theme=chalk ). Or can it be done using a library?
ideaboxer
  • 3,863
  • 8
  • 43
  • 62
0
votes
1 answer

Angular2 highcharts points not appearing

I am using angular2-highcharts chart module for my angular2 web application. When graph < 7000 points, the line and points display as intended. However, after ~>7000 points, the graph sometimes does not render a line, but if I hover over the graph,…
Mocha
  • 2,035
  • 12
  • 29
0
votes
1 answer

Ionic3 Highcharts-More import Error --JsAllow Not Set

I try to import Highcharts-more like this: import Highmore from '../../node_modules/highcharts/highcharts-more'; then im getting the following Error: Module '../../node_modules/highcharts/highcharts-more' was resolved to…
user9168386
0
votes
0 answers

Center-align Highcharts in Ionic3

I have created one chart using angular2-highcharts based on the https://stackoverflow.com/questions/48002797/cant-bind-to-options-since-it-isnt-a-known-property-of-chart/48004515#48004515 . I got the result as well. Could anyone please tell me how…
Dak
  • 312
  • 2
  • 10
0
votes
1 answer

How to remove a chart and create a new one each time that my behaviorSubject change its values

I have a problem because I am trying to show some results about countries into a Pie Chart(HightCharts). I assign this information to a BehaviorSubject after it comes from an API call into the ApiService. The first time, I receive the information…
0
votes
2 answers

Recieve HighStock RangeSelector button event in Angular 2+ component

I want to access highstock rangeSelector button event inside my angular component.I am using the angular2-highcharts package to use the highcharts library. Tried to access it using the (afterSetExtremes) binding but without any success. The code is…
Arjun Singh
  • 677
  • 6
  • 18
0
votes
1 answer

renderer.text not working in gevgeny/angular2-highcharts

I am using gevgeny/angular2-highcharts to use highchart in angular project. I am trying to use Highcharts.SVGRenderer#text. It work in highstock normally Woking Fiddle If same code I use in angular2-highcharts it is not working Check…
Patata
  • 273
  • 3
  • 18
0
votes
1 answer

Get data from interface into highcharts chart with Angular 5

I am using this npm package to make charts: https://www.npmjs.com/package/angular-highcharts I have an interface and I want to take values from the interface to populate the chart. At this stage all I want is a line graph. I tried various ways of…
Davtho1983
  • 3,827
  • 8
  • 54
  • 105
0
votes
1 answer

Highcharts not rendering in Angular 2 when I use data from http.get

I'm using highcharts in Angular 2. If I use static data the chart renders as expected, but if I use data from a http.get request in my service and use a subscribe to get it to my component it does not render. What returns instead is a empty chart. I…
London804
  • 1,072
  • 1
  • 22
  • 47