Popover not working properly in v7.9.3

Hi, I recently upgrade from ES 7.6.0 to 7.9.3. I now have a weird behavior where a Popover click clears my Chart. I pass LineSeries into the Chart as {children}. It appears the children gets cleared I have no idea why.

    <Chart>
          <Settings showLegend={showLegend} 
          />
          <Axis id='bottom' position={Position.Bottom} tickFormat={timeFormat} />
          <Axis id='left' position={Position.Left} title={yTitle} domain={domain}
            tickFormat={formatter} />
          {children}
    </Chart>

   < snip>

    <LineSeries
      key={series.series.id}
      id={series.series.id}
      name={name}
      xScaleType={ScaleType.Time}
      yScaleType={ScaleType.Linear}
      xAccessor={'timestamp'}
      yAccessors={['value']}
      data={values}
    />


Hello,

Can you please let me know which kind of chart, which part of Kibana UI you are on?
Is this a plugin built in top of Kibana? Or are you using Kibana's built in visualizations?

Thanks,
Bhavya

Yes it is a custom plugin sorry I should have made this clear.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.