Skip to content

Instantly share code, notes, and snippets.

View darshit-shah's full-sized avatar

Darshit Shah darshit-shah

View GitHub Profile
@darshit-shah
darshit-shah / README.md
Last active August 29, 2015 14:13
Bar Chart - Floating Scale

For reference, I have taken sample code from Mike Bostock's Bar Chart Example. At all places I have commented original code and replaced it with new code to convert given example with Floating Scale.

@darshit-shah
darshit-shah / README.md
Last active August 29, 2015 14:13
Line Chart - Floating Scale

For reference, I have taken sample code from Mike Bostock's Line Chart Example. At all places I have commented original code and replaced it with new code to convert given example with Floating Scale.

@darshit-shah
darshit-shah / README.md
Last active September 15, 2015 08:56
Smartfilter Stock Example

Read Me

@darshit-shah
darshit-shah / README.md
Last active September 15, 2015 08:56
Smartfilter Flights Example

Read Me

@darshit-shah
darshit-shah / REAMDE.md
Last active September 15, 2015 08:56
Smartfilter Generic Example

Read Me

@darshit-shah
darshit-shah / index.html
Last active October 23, 2015 13:41
A web component example - progress-bar
<!DOCTYPE html>
<head>
<script src="progress-bar.js"></script>
</Head>
<body>
<progress-bar value="25"></progress-bar>
<progress-bar value="50"></progress-bar>
<progress-bar value="75"></progress-bar>
</body>
</html>
@darshit-shah
darshit-shah / README.md
Last active April 14, 2016 15:49
Line chart like google stock chart with Touch support

For reference, I have taken sample code from Mike Bostock's Line Chart Example. Made few changes to handle touch and mouse move/drag

@darshit-shah
darshit-shah / 0_reuse_code.js
Created February 27, 2016 03:01
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@darshit-shah
darshit-shah / README.md
Last active January 23, 2020 08:09
Word Cloud

Word Cloud

@darshit-shah
darshit-shah / index.html
Last active January 23, 2020 08:10
Text Background Color using CSS Transition
<style>
.clip-text {
font-size: 50px;
font-weight: bold;
text-align: center;
color: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: arial
}