UNPKG
3d-pie-chart
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.1
Raphael plugin 3d pie chart
puffycoffee.github.io/3D-Pie-chart/
PuffyCoffee/3D-Pie-chart
3d-pie-chart
/
src
/
raphael-plugin.js
10 lines
(7 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ pie }
from
"./pie"
;
const
Raphael
=
require
(
"raphael"
);
export
const
createPlugin
= (
) => {
return
Raphael
.
fn
.
pie
=
function
(
config
) {
pie
(config,
this
); }; };