• Stars
    star
    151
  • Rank 246,057 (Top 5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 7 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

React component for d3.js calendar heatmap graph

React component for D3.js Calendar Heatmap

This d3.js heatmap representing time series data is used to visualize tracked time over the past year, showing details for each of the days on demand.

Includes a global overview of multiple years and visualizations of year, month, week and day overview with zoom for details-on-demand.

Inspired by Github's contribution graph

Based on Calendar View by Mike Bostock
Aaand D3.js Calendar Heatmap by Darragh Kirwan

Demo

Click here for a live demo.

Global overview

calendar heatmap - global overview

Year overview

calendar heatmap - year overview

Month overview

calendar heatmap - month overview

Week overview

calendar heatmap - week overview

Day overview

calendar heatmap - day overview

Install

  1. Install 'reactjs-calendar-heatmap' with npm
npm install reactjs-calendar-heatmap
  1. Import CalendarHeatmap in your component
import CalendarHeatmap from 'reactjs-calendar-heatmap'
  1. Render CalendarHeatmap component
<CalendarHeatmap
  data={data}
  color={color}
  overview={overview}
  handler={print}>
</CalendarHeatmap>

Properties

Property Usage Default Required
data Time series data from max a year back none yes
color Theme hex color #45ff00 no
overview Initial overview type (choices are: year, month, day) year no
handler Handler function is fired on click of a time entry in daily overview none no

Example data

Time series data where each day has a total time tracked (in seconds).
Details, if provided, are shown in a tooltip on mouseover in different overviews.

var data = [{
  "date": "2016-01-01",
  "total": 17164,
  "details": [{
    "name": "Project 1",
    "date": "2016-01-01 12:30:45",
    "value": 9192
  }, {
    "name": "Project 2",
    "date": "2016-01-01 13:37:00",
    "value": 6753
  },
  .....
  {
    "name": "Project N",
    "date": "2016-01-01 17:52:41",
    "value": 1219
  }]
}]

Optimization

In some cases details array could be large and in order to fit the data into the tooltip a short summary is generated with distinct projects and their total tracked time for that date. In terms of optimization, summary data can be computed server-side and passed in using the ``summary'' attribute. And in addition to the data structure described above this would result in a summary dictionary with distinct project names and total values of tracked time in seconds, e.g.:

var data = [{
  "date": "2016-01-01",
  "total": 17164,
  "details": [.....],
  "summary": [{
    "name": "Project 1",
    "value": 9192
  }, {
    "name": "Project 2",
    "value": 6753
  },
  .....
  {
    "name": "Project N",
    "value": 1219
  }]
}]

See index.html for an example implementation with random data or click here for a live demo.

Vanilla.js version

If you are looking for a plain vanilla javascript version of the heatmap, check out calendar-heatmap-graph

AngularJS

If you want to use this heatmap as an AngularJS directive (version 1.x), see angular-calendar-heatmap

Or as an Angular component (version 2.x), see angular2-calendar-heatmap

Dependencies

More Repositories

1

calendar-heatmap

📊 Calendar heatmap graph
JavaScript
235
star
2

angular-calendar-heatmap

📊 Angular directive for d3.js calendar heatmap graph
JavaScript
66
star
3

angular2-calendar-heatmap

📊 Angular component for d3.js calendar heatmap graph
TypeScript
36
star
4

angular-datetime-range

📅 Angular directive for datetime range input
CSS
25
star
5

angular-datetime-inputs

📅 Angular directives for datetime inputs
CSS
19
star
6

cli-plugin

🖥 CLI plugin for webapps
JavaScript
7
star
7

react-text-animation

React component for a floating text animation
JavaScript
5
star
8

text-animation

👾 Text Animation
JavaScript
5
star
9

react-datetime-inputs

📅 React components for datetime input elements
JavaScript
5
star
10

wordcloud

⛅️ Wordcloud
JavaScript
3
star
11

angular-text-animation

Floating text animation
JavaScript
2
star
12

dotfiles

Config files be here
Vim Script
2
star
13

angular-scroll-events

Angular directives for scroll events
JavaScript
2
star
14

stream

📹 video live stream using FFmpeg
Shell
1
star
15

angular-overlay-menu

General purpose overlay menu
HTML
1
star
16

notes

📝 Notes
JavaScript
1
star
17

ionic-test-app

Ionic test app
TypeScript
1
star
18

dsci510-example

This is going to be an example of the final project repository for the dsci 510 class
Python
1
star
19

qollap-animation

Qollap Animation
JavaScript
1
star
20

ng2-sandbox

Angular2 playground
TypeScript
1
star
21

samples

Electronic sample sequencer and controller
JavaScript
1
star
22

ramz-prototype

RAM-z prototype
JavaScript
1
star
23

hiss

Hiss at the cats when they touch the keyboard or mouse
Python
1
star
24

g1eb.github.io

JavaScript
1
star
25

KNIC_Sidebar

JavaScript
1
star