3d-pie-chart

1.0.1 • Public • Published

3D Pie Chart

Adorable and highly customizable Raphaël 3d pie/dounut chart.

Installation

npm install 3d-pie-chart --save

Build

npm run build

The bundle file includes raphael.js, there is no need to download it separately.

Usage

run on test page

npm run start:dev

run on your own page

Build first, then use generated dist/3d-pie.bundle.js file in your html

<script src="your/path/3d-pie.bundle.js"></script>

Example

pieChart({
    containerId: "wrapper",
    title: "Expenses",
    data: [
        {
            value: 45,
            color: "#00ff00",
            label: "January - 45"
        },
        {
            value: 49,
            color: "#ff0011",
            label: "February - 49"
        },
        {
            value: 40,
            color: "#0079fa",
            label: "March - 40"
        }
    ]
});

/3d-pie-chart/

    Package Sidebar

    Install

    npm i 3d-pie-chart

    Weekly Downloads

    56

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    10.9 kB

    Total Files

    7

    Last publish

    Collaborators

    • pengzhang