1.0.4 • Published 8 months ago

@noction/vue-highcharts v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

vue-highcharts

NPM version NPM downloads codecov

Wrapper for Highcharts in Vue. Currently supporting only vue3.

Install

npm

npm i @noction/vue-highcharts

yarn

yarn add @noction/vue-highcharts

pnpm

pnpm add @noction/vue-highcharts

Usage

<template>
  <highcharts
      :options="options"
  />
</template>

<script setup lang="ts">
import Highcharts from '@noction/vue-highcharts'
import { reactive } from 'vue'

const options = reactive({
  series: [{
    data: [1, 2, 4, 8, 16, 32, 64, 128, 256, 512]
  }]
})

</script>

Typings

At the moment @noction/vue-highcharts doesn't export any types.

Props

NameTypeDescriptionRequired
optionsObjectThe chart options structuretrue

Supporting

  1. Highcharts.Chart
  2. Highcharts.MapChart
  3. Highcharts.StockChart
  4. Highcharts.GanttChart
1.0.4

8 months ago

1.0.3

10 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago