Author: | liuxd |
---|---|
Views Total: | 1,740 views |
Official Page: | Go to website |
Last Update: | June 3, 2016 |
License: | MIT |
Preview:

Description:
Six.js is a super tiny JavaScript library used to render an HTML5 canvas based hexagon radar chart for presenting your skills, experiences, progresses and more.
How to use it:
First you have to load the six.js library at the end of the html document.
<script src="six.js"></script>
Create an HTML5 canvas element for the radar chart.
<canvas id="demo"></canvas>
Initialize the radar chart.
six.init(id, side_length, names, color);
Draw a radar chart on the canvas element you just created.
six.draw(values, color);