Here are the examples of the python api bokeh.core.enums.LegendLocation 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_enums.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_LegendLocation(self):
assert tuple(bce.LegendLocation) == (
"top_left", "top_center", "top_right",
"center_left", "center", "center_right",
"bottom_left", "bottom_center", "bottom_right"
)
def test_LineCap(self):