Skip to content

Commit

Permalink
Fix bokeh bump issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GJFR committed Mar 21, 2024
1 parent 7ac152c commit ac724f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/plot_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __create_plot(params: PlotParameters, db: MongoDB):
width=700,
tools='xwheel_zoom,reset,pan',
active_scroll='xwheel_zoom')
plot.add_glyph(source, Circle(x='revision_number', y='outcome', fill_color=color_map, fill_alpha=0.8, size=15))
plot.add_glyph(source, Circle(x='revision_number', y='outcome', fill_color=color_map, fill_alpha=0.8, radius=8, radius_units='screen'))

# Formatting
plot.xaxis[0].formatter = BasicTickFormatter(use_scientific=False)
Expand Down

0 comments on commit ac724f2

Please sign in to comment.