0.1.9 • Published 4 years ago

vue-highcharts-v2 v0.1.9

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

vue-highcharts-v2

Installation

npm install -S vue-highcharts-v2

Usage

You can simply import it and use it.

import Vue from 'vue';
import VueHighcharts from 'vue-highcharts-v2';
 
Vue.use(VueHighcharts);

If you want use china-map, world-map or any other add-on, you should import them on.

import mapData from 'vue-highcharts-v2/map/china';
import worldData from 'vue-highcharts-v2/map/world';

use these components in the template.

<template>
    <div class="index">
        <v-chart :config="chartConf"></v-chart>
        <v-map :config="mapConf"></v-map>
        <v-map :config="worldConf"></v-map>
    </div>
</template>

If you want to choose theme, you can use :theme.

<template>
    <div class="index">
        <v-chart :config="chartConf" :theme="theme"></v-chart>
    </div>
</template>
0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago