diff --git a/examples/Legend.py b/examples/Legend.py
index 2cd982eab46dc1cd405c042656dc5537af96bd61..f78411514328edc7e0b4f2a6dfab1ad1cdd24a92 100644
--- a/examples/Legend.py
+++ b/examples/Legend.py
@@ -14,7 +14,7 @@ plt.addLegend()
 #l = pg.LegendItem((100,60), offset=(70,30))  # args are (size, offset)
 #l.setParentItem(plt.graphicsItem())   # Note we do NOT call plt.addItem in this case
 
-c1 = plt.plot([1,3,2,4], pen='r', name='red plot')
+c1 = plt.plot([1,3,2,4], pen='r', symbol='o', symbolPen='r', symbolBrush=0.5, name='red plot')
 c2 = plt.plot([2,1,4,3], pen='g', fillLevel=0, fillBrush=(255,255,255,30), name='green plot')
 #l.addItem(c1, 'red plot')
 #l.addItem(c2, 'green plot')