highcharts / highcharts-react

The official Highcharts supported wrapper for React

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vector Plot Availability

Jungmin81 opened this issue · comments

When will the Vector Plot in React become possible?
I looked it up and found that the vector plot available in React 18 does not exist...

Hi @Jungmin81,

The highcharts-react-official module supports all Highcharts features. You need to only import and initialize vector module:

import Highcharts from "highcharts";
import vectorModule from "highcharts/modules/vector";

vectorModule(Highcharts);

Live demo: https://codesandbox.io/p/sandbox/highcharts-react-demo-forked-ck66hs?file=%2Fdemo.jsx%3A19%2C7
Docs: https://www.highcharts.com/docs/chart-and-series-types/vector-plot

Best regards!

Closed due to inactivity.