@ghalex/vue-d3-charts

0.2.8 • Public • Published

vue-d3-charts

Simply yet configurable charts build with D3.

See documentation and demo page.

Install

npm i vue-d3-charts --save

Usage

Import:

import { D3BarChart } from 'vue-d3-charts';

Template:

<D3BarChart :config="config" :datum="data"></D3BarChart>

Configuration and data:

// data
data = [{
  name: "Lorem",
  total: 30
},{
  name: "Ipsum",
  total: 21
},{
  name: "Dolor",
  total: 20
}]

// Configuration
config = {
  key: "name",
  value: "total",
  color: "steelblue",
}

Contributing

See contribution guide.

License

This repository is available under GNU General Public License v3.0. See details.

/@ghalex/vue-d3-charts/

    Package Sidebar

    Install

    npm i @ghalex/vue-d3-charts

    Weekly Downloads

    1

    Version

    0.2.8

    License

    none

    Unpacked Size

    275 kB

    Total Files

    14

    Last publish

    Collaborators

    • ghalex