mirror of
https://github.com/arnaucube/goBlockchainDataAnalysis.git
synced 2026-02-07 19:46:45 +01:00
added tx page in frontend and backend route. Added address tx chart time analysis
This commit is contained in:
@@ -18,4 +18,16 @@ angular.module('app.address', ['ngRoute'])
|
||||
}, function(data, status, headers, config) {
|
||||
console.log('data error');
|
||||
});
|
||||
$scope.addresstimechart= {
|
||||
data:[],
|
||||
labels: []
|
||||
};
|
||||
$http.get(urlapi + 'addresstimechart/' + $routeParams.hash)
|
||||
.then(function(data, status, headers, config) {
|
||||
console.log(data);
|
||||
$scope.addresstimechart.data = data.data.data;
|
||||
$scope.addresstimechart.labels = data.data.labels;
|
||||
}, function(data, status, headers, config) {
|
||||
console.log('data error');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user