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
0 answers

Angular highcharts - reset zoom manually

I am using highcharts-ng, how can i reset manually using reset button?
levipadre
  • 569
  • 7
  • 31
0
votes
0 answers

Dynamically updating the title, categories and size of highcharts-ng chart

I need to be able to update the chart title and size when drilled down. The drilldown function runs but the following code does nothing at all. // This gets called correctly, alert gets hit but does not change the title drilldown: function() { …
user2158259
  • 137
  • 2
  • 11
0
votes
1 answer

Load event issue: unable to add hover event on pie chart's legend

I'm trying to trigger an event once the legend items gets hovered. However, after many attempts I'm still unable to make it work. This was one of the examples that made the most sense but no luck with it: http://jsfiddle.net/rAsRP/129/ My controller…
Gustavo Matias
  • 3,508
  • 3
  • 27
  • 30
0
votes
1 answer

adding points to series using Highchart using c#

I have implemented graphs and drawn series using the following code DotNet.Highcharts.HighCharts chart=new Highcharts.HighCharts("chart"); chart.SetSeries(new[] {new Series{Name="one",Data =new Data(new…
0
votes
0 answers

High chart is not getting generated

This is my controller $scope.chartConfig2 = { options: { chart: { type: 'column', borderColor: '#EBBA95', borderWidth: 3, } }, title: { }, …
sanmoy paul
  • 209
  • 2
  • 13
0
votes
1 answer

Add ng-click to highcharts-ng column chart xAxis labels

I am using highcharts-ng within an angular app, I need to run a function when the xAxis labels are clicked see below the categories and labels I am adding to the chart. Currently I can add an onclick to the label and alert but am not able to get…
0
votes
1 answer

If series data array is null show message no data available

I am using highcharts with angularjs (highcharts-ng) and getting series data dynamically that series data array may be null, if null I want to display message some thing like "No data available" in graph div. How can I do this??
Asad Fida
  • 216
  • 2
  • 6
0
votes
1 answer

Highcharts in AngularJS with inline variables (using Pablojim's Highchart-ng)

I'm using the Highchart charting library with AngularJS, using Pablojim's 'Highchart-ng' module. Everything is set up properly, and the following code works as intended:
Jeffrey Roosendaal
  • 6,872
  • 8
  • 37
  • 55
0
votes
1 answer

Highcharts-ng dynamic config binding

I am having trouble having highcharts bind to a dynamic chartConfig using this approach where charts is an object in the controller housing multiple charts by the keys "{{moment}}_a". When the page resolves, the highcharts has the right output, for…
Noel Euzebe
  • 95
  • 2
  • 9
0
votes
1 answer

Highstock innacurate rendering of line data series

I noticed that when I render a data a line graph, some of the data points are rendered higher or lower than the actual data values. This occurs when the chart width is smaller than normal (in my case, it occurs at a width of 358px). This example…
Caleb Powell
  • 314
  • 3
  • 5
0
votes
1 answer

Highcharts complex columnrange graph

I need to create a graph to display user-entered sleep data. The user will enter a start datetime and end datetime, as well as a numeric value for quality. The graph must have the y axis as time, from 01:00 PM (min) to 12:59 PM (max). The x axis…
artews
  • 1
  • 2
0
votes
1 answer

Issue with click function highcharts-ng and Angularjs

I set up a factory provider for my graph. The graph is built from highcharts and highcharts-ng which is an angularjs highcharts directive. Within my controller named SentimentChartController I then created a click function on my graph nodes as…
ocajian
  • 667
  • 5
  • 13
  • 29
0
votes
4 answers

How to hide the export button in highcharts-ng

I'm using Angularjs with highcharts-ng library and I want to have a highchart directive with the ability to export the chart (showing the export button) and another without that option (not showing the export button) but I have not managed to…
David Barreto
  • 8,887
  • 7
  • 32
  • 46
0
votes
1 answer

How to customize Highchart graph similar to linkedin "Who's viewed your profile > Viewers found you from LinkedIn.com"

I would like to customize or create a graph using highcharts similar to linkedin "Who's viewed your profile > Viewers found you from Linked-in.com" can anyone guide me how to achieve this?![enter image description here][1]
arul.k
  • 69
  • 1
  • 3
  • 7
0
votes
2 answers

Adding stacklabels to highcharts-ng

I'm trying to add stack labels (http://api.highcharts.com/highcharts#yAxis.stackLabels) to my chart http://jsfiddle.net/Hjdnw/970/ According to the docs, https://github.com/pablojim/highcharts-ng all options should go into options…
Joe
  • 4,274
  • 32
  • 95
  • 175