Skip to content

[BUG] MultiLine datetime precision loss #10738

Description

@bryevdv
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)

Screen Shot 2020-11-28 at 12 51 15 PM

Metadata

Metadata

Assignees

No one assigned

    Type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions