Last active
November 12, 2016 03:32
-
-
Save narenaryan/44c751e94bdc6dbe2247392a547bd6b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Angular JS code | |
| angular.module('website', []). | |
| controller('MainController', function($scope) { | |
| // It is an array of object{Page, Visits, PerNewVisits,Revenue} | |
| $scope.BorderedTable = [["index.html", 1266, 32.3%, 321.33], | |
| ["about.html", 261, 33.3%, 234.12]]; | |
| $scope.BorderedWithStrippedTable = [["index.html", 1266, 32.3%, 321.33], | |
| ["about.html", 261, 33.3%, 234.12]]; | |
| $scope.BasicTable = [["index.html", 1266, 32.3%, 321.33], | |
| ["about.html", 261, 33.3%, 234.12]]; | |
| $scope.StripedRowsTable = [["index.html", 1266, 32.3%, 321.33], | |
| ["about.html", 261, 33.3%, 234.12]]; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment