realchart-convert
v0.1.7
Published
## Example to convert highcharts options
Downloads
4
Readme
RealChart Converting Library
Example to convert highcharts options
import { createChart } from 'realchart';
import { highToReal } from 'realchart-convet'
const options = { /* HighCharts options */};
const container = document.getElementById("realchart")
const config = highToReal(options);
createChart(document, container, config);