0.1.2 • Published 6 years ago

vschart v0.1.2

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

vue-schart

:bar_chart: Vue.js wrapper for sChart.js

Support vue.js 1.x & 2.x

interactive demo

Usage

Install:

npm install vue-schart -S

Use in component:

<template>
    <div id="app">
        <schart :canvasId="canvasId"
			:type="type"
			:width="width"
			:height="height"
			:data="data"
			:options="options"
		></schart>
    </div>
</template>
import Schart from 'vue-schart';
export default {
	data() {
		return {
			canvasId: 'myCanvas',
			type: 'bar',
			width: 500,
			height: 400,
			data: [
				{name: '2014', value: 1342},
				{name: '2015', value: 2123},
				{name: '2016', value: 1654},
				{name: '2017', value: 1795},
			],
			options: {
				title: 'Total sales of stores in recent years'
			}
		}
	},
    components:{
		Schart
	}
}

Options

Refer to the documentation for sChart.js.

Demo

demo

License

MIT license.

0.1.2

6 years ago

0.1.1

6 years ago

1.0.0

6 years ago