0.0.2 • Published 3 years ago

@tattdogg/vue-highcharts v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

It's an extended version of the official highcharts wrapper: https://github.com/highcharts/highcharts-vue

It allows you to use highchart props and methods from your code.

Installation

Using npm

$ npm i @tattdogg/vue-highcharts

Usage

import { Chart } from '@tattdogg/vue-highcharts'

components: {
	highcharts: Chart
}
<highcharts :options="options" ref="chart" />
this.$refs.chart.instance.showLoading('Loading...'); // or any other highcharts method or property

TypeScript is supported.