Wrapper for Highcharts in Vue. Currently supporting only vue3.
npm
npm i @noction/vue-highchartsyarn
yarn add @noction/vue-highchartspnpm
pnpm add @noction/vue-highcharts<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>At the moment @noction/vue-highcharts doesn't export any types.
| Name | Type | Description | Required |
|---|---|---|---|
| options | Object | The chart options structure | true |
Highcharts.ChartHighcharts.MapChartHighcharts.StockChartHighcharts.GanttChart