This file contains 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
// Highcharts CheatSheet Part 1. | |
// Create interactive charts easily for your web projects. | |
// Download: http://www.highcharts.com/download | |
// More: http://api.highcharts.com/highcharts | |
// 1. Installation. | |
// Highcharts requires two files to run, highcharts.js and either jQuery, MooTools or Prototype or the Highcharts Standalone Framework which are used for some common JavaScript tasks. | |
// <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
// <script src="https://code.highcharts.com/highcharts.js"></script> |
This file contains 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
<div ng-app="quoteApp" ng-controller="quoteCntrl" class="app-div" ng-cloak> | |
<div class="column main-content" ng-style="{'background-color': randomColor.Code}"> | |
<div class="row" > | |
<div class="col-xs-1 col-md-4" > | |
</div> | |
<div class="col-xs-10 col-md-4 quote-container" > | |
<div class="quote-text demo animated slideInDown"> | |
<span ng-bind="randomQuotes[i].quote" ng-style="{'color': randomColor.Code}">-</span> | |
</div> |