Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 890 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 890 Bytes

Vue-Highcharts

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.

THIS PACKAGE IS DEPRECATED

The offcial wrapper https://github.com/highcharts/highcharts-vue now has support of using Highcharts instance from the code. Please use it instead.

this.$refs.chart.chart.showLoading('Loading...'); // or any other highcharts method or property

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.