Questions tagged [highcharts-ng]

A simple AngularJS directive for Highcharts.

A simple Angularjs directive for Highcharts.
See: https://github.com/pablojim/highcharts-ng

How to install: bower install --save highcharts-ng

271 questions
0
votes
1 answer

Highcharts tooltip missing if shadow: true

I used npm to install highcharts (and highcharts-ng). My highcharts were plotting correctly, but the tooltip was not showing up, and each mouse event was generating an error: Uncaught TypeError: Cannot set property 'd' of null Turning the tooltip…
solbs
  • 940
  • 3
  • 15
  • 29
0
votes
3 answers

Highlight tooltip shared item depending on hovered serie in Highcharts

I have the following chart : http://jsfiddle.net/5oso60oq/ JS : $(function () { $('#container').highcharts({ chart: { type: 'bar' }, title: { text: 'Stacked bar chart' }, …
Maxime Lafarie
  • 2,172
  • 1
  • 22
  • 41
0
votes
1 answer

Highchart-ng not displaying inside a directive

I've got a directive that contains highchart-ng and I need to update the series data inside the directive from my Service to fetch the data. I got it working without the service - basically this works https://jsfiddle.net/w657bcdp/ However, if I…
0
votes
2 answers

highcharts-ng show loading Image when loading

I am trying to set the loading functionality by using loading object $scope.highchartsNG = { options: { chart: { type: 'bar' } }, series: [{ data: [10, 15, 12, 8, 7] …
devanathan
  • 768
  • 3
  • 10
  • 39
0
votes
1 answer

Highcharts-ng with multiple series draw chart incorrectly

I have two fiddles: no angular, and using angular. The one with the angular doesn't work correctly. It doesn't show dates in xAxis, and doesn't use percent for yAxis. Is there something specific need to be done, to have that work with angular? No…
K.S.
  • 110
  • 9
0
votes
1 answer

Add more charts in angular highcharts

I use angular highcharts-ng and only have a line chart, bar chart and pie chart. Now how can I add more charts like gauge chart and score card in this plugin? plugin github page
bitcodr
  • 1,395
  • 5
  • 21
  • 44
0
votes
0 answers

highcharts-ng make config attr as a variable

I'm using higtcharts-ng to make some graphs,I just wrote an angular directive which called mchart to wrap it. there is the code: 'use strict'; angular.module('MyApp') .directive('mchart',function(){ return { templateUrl :…
0
votes
1 answer

How could I sort each group of columns from low to high

How could I sort each group of columns from low to high? Also, could I make the number in tooltip in $ currency format and remove the floats? Thanks so much JS $scope.chartConfig = { options: { chart: { type: 'column' }, …
user3675188
  • 7,271
  • 11
  • 40
  • 76
0
votes
1 answer

How could I change the x,y label and remove empty x bar

I coverted all the x value with Date.parse() function How could I get my expectation - change x label and x value as "%Y%m%d" in tooltip - remove the strange 12:00 empties on x-axis Thanks Covert function $.each($scope.flights, function() { …
user3675188
  • 7,271
  • 11
  • 40
  • 76
0
votes
0 answers

Highcharts hover point shows previous point's tooltip

The mouse is on a data point, and the tooltip that appears belongs to a data point two or three datapoints before. Any ideas what is wrong? I'm using Angular 1.5 and highcharts-ng. As requested, I am attaching the Configuration (I took that from…
pankgeorg
  • 123
  • 1
  • 9
0
votes
0 answers

Putting preload in highcharts

I'm trying to put a preload. Currently I have 38 series. and I have a function to generate a preload animation called preload.show () and preload.hide (). When I try to generate my chart I invoke preload.show for animation, and when the animation…
yavg
  • 2,761
  • 7
  • 45
  • 115
0
votes
0 answers

Add 100 points at once dynamically to Highcharts

I'm trying to add 100 points at once dynamically to Highcharts and shift the chart after 1000 added points. But I do not get it to work in a good way. Here is my code. What is it that I am doing wrong? var chart; var minData = 1000; function…
0
votes
1 answer

Append a Jade file to a div in parent Jade file on Button click

I tried to find solution for the past 3 days but no luck. My requirement is to load highcharts which has some data for analysis. I have to load 50 such charts with each chart holding a million points. To get rid of the browser collapse, I decided to…
sasikant
  • 247
  • 1
  • 3
  • 11
0
votes
2 answers

Highcharts-ng Update X axis Values

Hi guys i need your help. I am using the Highcharts-NG to make my charts, but i have one small problem. I have my graph working , i am pushing live data to my graph and it is working very well, but instead of X values "1","2","3" every time i insert…
0
votes
1 answer

add a bar Highcharts series

I want to add another bar to a category. for example I want to put another bar in Category 1 keeping my structure. but I'm adding data without an array. I do not want to use this structure for example. series: [{ name: 'bar1', …
user5115790