Beispiel #1
0
class TestDiamond(unittest.TestCase):
    def setUp(self):
        from bokeh.glyphs import Diamond
        self.test_diamond = Diamond()

    def test_expected_values(self):
        self.assertEqual(self.test_diamond.__view_model__,'diamond')

    def test_to_glyphspec(self):
        self.assertEqual(self.test_diamond.to_glyphspec(), {'line_color': {'value': 'black'}, 'fill_color': {'value': 'gray'}, 'y': {'units': 'data', 'field': 'y'}, 'x': {'units': 'data', 'field': 'x'}, 'type': 'diamond', 'size': {'units': 'screen', 'field': None, 'default': 4}})
Beispiel #2
0
class TestDiamond(unittest.TestCase):
    def setUp(self):
        from bokeh.glyphs import Diamond
        self.test_diamond = Diamond()

    def test_expected_values(self):
        self.assertEqual(self.test_diamond.__view_model__, 'diamond')

    def test_to_glyphspec(self):
        expected = dict(GENERIC_MARKER_DICT)
        expected['type'] = 'diamond'
        self.assertEqual(self.test_diamond.to_glyphspec(), expected)
Beispiel #3
0
class TestDiamond(unittest.TestCase):

    def setUp(self):
        from bokeh.glyphs import Diamond
        self.test_diamond = Diamond()

    def test_expected_values(self):
        self.assertEqual(self.test_diamond.__view_model__, 'diamond')

    def test_to_glyphspec(self):
        expected = dict(GENERIC_MARKER_DICT)
        expected['type'] = 'diamond'
        self.assertEqual(self.test_diamond.to_glyphspec(), expected)
Beispiel #4
0
def test_Diamond():
    marker = Diamond()
    yield check_marker, marker
    yield check_fill, marker
    yield check_line, marker
    yield check_props, marker, MARKER, FILL, LINE
Beispiel #5
0
 def setUp(self):
     from bokeh.glyphs import Diamond
     self.test_diamond = Diamond()
Beispiel #6
0
 ("square_x",
  SquareX(x="x",
          y="y",
          size="sizes",
          line_color="#FDAE6B",
          fill_color=None,
          line_width=2)),
 ("square_cross",
  SquareCross(x="x",
              y="y",
              size="sizes",
              line_color="#7FC97F",
              fill_color=None,
              line_width=2)),
 ("diamond",
  Diamond(x="x", y="y", size="sizes", line_color="#1C9099", line_width=2)),
 ("diamond_cross",
  DiamondCross(x="x",
               y="y",
               size="sizes",
               line_color="#386CB0",
               fill_color=None,
               line_width=2)),
 ("triangle",
  Triangle(x="x", y="y", size="sizes", line_color="#99D594", line_width=2)),
 ("inverted_triangle",
  InvertedTriangle(x="x",
                   y="y",
                   size="sizes",
                   line_color="#DE2D26",
                   line_width=2)),
Beispiel #7
0
 def setUp(self):
     from bokeh.glyphs import Diamond
     self.test_diamond = Diamond()