Questions tagged [angular-nvd3]

Angular.js directives for nvd3.js

Most known libraries:

202 questions
0
votes
1 answer

nvd3 and angular - Unable to fix axis values

I'm trying to develop a multi-chart using angular-nvd3. The chart works fine, I can get data and display the values I need. The problem I've got now, is that I'd like to display on the x-axis some specific values, but I can't for some reason. here's…
Nick
  • 13,493
  • 8
  • 51
  • 98
0
votes
1 answer

display months name in angular NVD3 multicharts

I'm trying to display the months name to make a multi-chart graph that will analyze the data for this year and the previous one. I was trying to do that using ticks. here is a punker where i'm trying to do that, but I'm not able to display months…
Med
  • 241
  • 1
  • 6
  • 23
0
votes
1 answer

Angular ui-tab not refreshing after hiding

I'm looking to hide tabs and then display them, but I'm facing a refreshing problem. In fact if I select one chart then click on the hide botton to display the grid, it hides the other tabs but it displays always the nvD3 charts instead of the…
0
votes
1 answer

angular-nvd3 graphs' bad formatting when placed inside tab-content

I want to show piechart and multiBar chart on my webpage. I have a controller to set data and options for these charts. Everthing works fine except for the formatting of these charts. I have the following code:
0
votes
2 answers

Add reference line on NVD3 graph

I am currently using the Angular-NVD3 library to generate a graph that look like this: I have been tasked with adding a reference line on to the graph that will act as a target date. I have looked for a way to add an asymptote onto the y-axis, a…
Nicholas Robinson
  • 1,359
  • 1
  • 9
  • 20
0
votes
1 answer

$injector:modulerr] Failed to instantiate module nvd3 due to:

I followed this post: http://gonehybrid.com/bring-your-ionic-app-to-life-getting-started-with-d3-js/ I have all the libraries but unfortunately, I get this error: Error: [$injector:modulerr] Failed to instantiate module starter due…
Ara Sno
  • 1
  • 1
  • 2
0
votes
1 answer

Filter by range date for angular-nvd3 directive?

I create an nvd3 graph with the angular-nvd3 directive: However it does not seem possible…
dan2k3k4
  • 1,388
  • 2
  • 23
  • 48
0
votes
2 answers

Generate nested json format like nvd3 StackAreaChart data

I'm trying to produce a nested json like nvd3 StackedAreaChart uses: [ { "key" : "North America" , "values" : [ [ 1025409600000 , 23.041422681023] , [ 1028088000000 , 19.854291255832] ] }, { …
Lekz Flores
  • 468
  • 10
  • 27
0
votes
1 answer

Read data from MySQL via AJAX to be sent as data object in the controller of NVD3-Angular

I have found the library nvD3-Angular which looks really good and friendly. I am using it to plot just static data, but I want to be able to read data stored in my DB. Is there a way to set up the data variable with the mentioned data via AJAX using…
0
votes
1 answer

angular-nvd3 and Browserify

How can I get angular-nvd3 to work with Browserify? I install via npm install angular-nvd3 then use the following to create my module. require('angular').module('myApp', [require('angular-nvd3')]); My controller looks like require('angular') …
lebolo
  • 2,120
  • 4
  • 29
  • 44
0
votes
1 answer

nvD3 bullet chart is not showing up

i am using angualr nvD3 directory for bullet chart. i want to dispaly the data in the form of bullet chart in a table. var app = angular.module('plunker', ['nvd3']); app.controller('MainCtrl', ['$scope','$http', function ($scope, $http ) { …
Teja
  • 35
  • 7
0
votes
2 answers

in Angular- nvD3 donut chart how to remove radial buttons

i am using angular-nvD3 directory for donut chart. Angular-nvD3 Donut Chart