Hi ,
I have the following example code in my app:
Now i have Angular controller like this :
angular.module('WidgetsApp').controller('Widgetscontroller', function ($scope, factory) {
$scope.getData = function () {
$scope.d = {};
var txt = $scope.d.txt_chart;
var res = factory.getData(txt);
});
})();

Nilesh PatilPosted Nov 7, 2017, 6:24 AM