Fixed Chart creation error in ChartTimeBase.tsx

This commit is contained in:
KharchenkoVladimir 2021-11-15 15:18:07 +05:00
parent 6ec3836abe
commit 8632b73c64

View File

@ -201,7 +201,7 @@ export const ChartTimeBase: React.FC<ChartTimeBaseProps> = ({options, dataParams
let thisOptions = {} let thisOptions = {}
Object.assign(thisOptions, defaultOptions, options) Object.assign(thisOptions, defaultOptions, options)
let newChart = new Chart(chartRef.current, { let newChart = new Chart(chartRef.current ?? "", {
type: 'line', type: 'line',
plugins: [ChartDataLabels], plugins: [ChartDataLabels],
options: thisOptions, options: thisOptions,