-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
# heatmap-js | ||
# Heatmap-Visualization-JS | ||
|
||
How to use this library | ||
A Heatmap Visualization Generation library for JavaScript | ||
|
||
# Installation: | ||
# How to use this library | ||
|
||
## Installation | ||
|
||
Embed within html using <script> tag | ||
<script src= "https://SunitRaut.github.io/heatmap-js/heatmap.js" > </script> | ||
|
||
# Create HeatMap Object | ||
### Create HeatMap Object | ||
var p = new HeatMap(); | ||
|
||
# Define Region for HeatMap | ||
### Define Region for HeatMap | ||
var region = p.defineRegion(loc); | ||
|
||
# Create HeatMap by adding data to region | ||
### Create HeatMap by adding data to region | ||
var heatmap = p.createHeatMap(data); | ||
|
||
Check Demo here: https://SunitRaut.github.io/heatmap-js/example |