bokeh.models.glyphs.SquareCross

Here are the examples of the python api bokeh.models.glyphs.SquareCross taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : test_glyphs.py
with MIT License
from rthorst

def test_SquareCross():
    marker = SquareCross()
    check_marker_properties(marker)
    check_fill_properties(marker)
    check_line_properties(marker)
    check_properties_existence(marker, MARKER, FILL, LINE, GLYPH)


def test_SquareX():