Here are the examples of the python api bokeh.models.glyphs.Image taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
0
View Source File : test_glyphs.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_Image():
glyph = Image()
assert glyph.image is None
assert glyph.x is None
assert glyph.y is None
assert glyph.dw is None
assert glyph.dh is None
assert glyph.dilate is False
check_properties_existence(glyph, [
"image",
"x",
"y",
"dw",
"dw_units",
"dh",
"dh_units",
"global_alpha",
"dilate",
"color_mapper",
], GLYPH)
def test_ImageRGBA():