Here are the examples of the python api bokeh.layouts.grid.name taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
View Source File : test_layouts.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_layout_kwargs():
p1, p2, p3, p4 = figure(), figure(), figure(), figure()
grid = layout([[p1, p2], [p3, p4]], sizing_mode='fixed', name='simple')
assert grid.name == 'simple'
def test_layout_nested():