1.1.0 • Published 8 years ago

single-stacked-bar v1.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

Single Stacked Bar Graph

This JS library imitates the Language Status Bar of GitHub

Dependencies

  • Jquery ~1.3

Usage

//The viewport element to view legend and details
<div class="viewport"></div>
//The container class to hold stacked bar
<div class="myClass"><div>
...
<script type="text/javascript">
	//The JSON data variable
	var myData = [
		{name: "Element One", value: 20, color: "blue"},
		{name: "Element Two", value: 30, color: "red"},
		{name: "Element Three", value: 50, color: "green"}
	];
	$('.myClass').singleStack(myData);
</script>
1.1.0

8 years ago

1.0.0

8 years ago

0.0.1

8 years ago