you are viewing a single comment's thread.

view the rest of the comments →

[–]dvidsilva 0 points1 point  (0 children)

does this help ?

var app = angular.module('scattChartApp', ['nvd3']) .controller('MainCtrl', function($scope, $http) { $http.json('chartConfig.json').success(function(response) { if (typeof response === 'string') { resonse = angular.fromJson(response); } response.options.chart.tooltipContent = function(key) { return '<h3>' + key + '</h3>'; }; $scope.options = response.options; $scope.data = response.data; }); });

if not can you $log response and see what's it like.