Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View gandhirahul's full-sized avatar
💭
I may be slow to respond.

Rahul Gandhi gandhirahul

💭
I may be slow to respond.
View GitHub Profile
// 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>
@gandhirahul
gandhirahul / index.html
Created October 11, 2016 06:42 — forked from anonymous/index.html
Random Quote Generator
<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>