Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mithunsatheesh/curious-graph
Jquery flot PIE plugin extended
https://github.com/mithunsatheesh/curious-graph
Last synced: about 1 month ago
JSON representation
Jquery flot PIE plugin extended
- Host: GitHub
- URL: https://github.com/mithunsatheesh/curious-graph
- Owner: mithunsatheesh
- Created: 2012-05-24T12:10:32.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-15T14:40:48.000Z (almost 12 years ago)
- Last Synced: 2024-04-15T03:09:29.471Z (9 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. Curious-Graph
*Version:* Extention to Jquery flot 0.7
*License:* "same as Jquery flot 0.7"
*Author:* "Mithun Satheesh"
h2. About
This is a modification to pie charting script of jquery graph library flot. Developed for the admin-end data manipulations of Zingreel.com. A online movie rental website. The pie graph was modified to a more attractive appearance.
h2. Browser Support
Tested on Firefox 3.0 + , Chrome & Safari
h2. Use
Plugin usage same as flot with additional options added on as shown below.
h3. javascript
$(document).ready(function(){$.plot($("#demo_container"), data,
{
series: {
pie: {
innerRadius: 0.4,
radius:0.8,
innerLabel:{text:'name',color:"#ffcc2a"},
show: true,
stroke:{color:'#000',width:1},
offset:{top:10,left:10}
}
},
grid: {
hoverable: true,
clickable: true
},
legend: {
show: true,
text: "Revenue Distribution per region (INR)"
}
});
});h3. html
h2. Changelog
*Extention to Jquery flot 0.7