Jack Sacali
Results
2
comments of
Jack Sacali
I created this workaround to make the build pass for now: Create a new type and use it override the type of the imported `ReactApexChart` component ``` import React from...
I have a similar issue using react and apexcharts, I solved it using cloneDeep from lodash to pass the series array: ``` const chartOptions: ApexOptions = { series: cloneDeep(series), ...otherOptions,...