Open
Description
Hi,
I tried to plot a simple Anychart with create-react-app project. But, it is giving me "FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory" error.
The code of my component is :
import React from "react";
import AnyChart from 'anychart-react'
class NewChart extends React.Component {
render() {
return (
<div className="chart-component">
<div className="chart-section">
<AnyChart
type="pie"
data={[1, 2, 3, 4]}
title="Simple pie chart"
/>
</div>
</div>
);
}
}
export default NewChart;
Metadata
Metadata
Assignees
Labels
No labels