### What problem are you trying to solve? In the chart.js performance documentation it [mentions the possibility of using web workers to perform chart rendering in parallel with the main thread](https://www.chartjs.org/docs/3.5.1/general/performance.html#parallel-rendering-with-web-workers-chromium-only). ### Describe the solution you'd like Implement alternative components. Final result usage example should look like this: **worker.js** ```jsx import 'react-chartjs-2/offscreen/worker' ``` **app.js** ```jsx import { Chart } from 'react-chartjs-2/offscreen' const worker = new Worker('worker.js') <Chart worker={worker} type='bar' data={...} /> ``` Source: https://github.com/reactchartjs/react-chartjs-2/issues/986