Skip to content

Commit

Permalink
Fixed bug in Gapminder app
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jun 27, 2017
1 parent caca493 commit 68bbae2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gallery/apps/bokeh/gapminder.py
Expand Up @@ -37,8 +37,8 @@
gapminder_ds = ds.redim(**dimensions).to(hv.Points, kdims, vdims, 'Year')

# Define annotations
text = ds.clone({yr: hv.Text(1.2, 25, str(int(yr)), fontsize=30)
for yr in gapminder_ds.keys()})
text = gapminder_ds.clone({yr: hv.Text(1.2, 25, str(int(yr)), fontsize=30)
for yr in gapminder_ds.keys()})

# Define options
opts = {'plot': dict(width=1000, height=600,tools=['hover'], size_index='Population',
Expand Down

0 comments on commit 68bbae2

Please sign in to comment.