Datetime with multi_line and cds

Hi,

The following code:

from bokeh.models import ColumnDataSource
from bokeh.plotting import figure, output_file, show

output_file("line.html")

data = {'x': [[1606075294619, 1606075294646, 1606075294670, 1606075294695]],
       'y': [[1, 2, 3, 6]]}

source = ColumnDataSource(data=data)

fig = figure(height=250, x_axis_type='datetime')
fig.multi_line(xs='x', ys='y', source=source)

show(fig)

gives with Bokeh version 2.2.3:
bokeh_plot (5)

It use to work with version 2.1.0 and display:
bokeh_plot (4)

Thanks

This is a bug with certain glyphs and datetime axes. You will need to stay on 2.1.x for now.