Non filled circle
Grethold opened this issue · 4 comments
Grethold commented
highfestiva commented
Manually: Ctrl+MMButton-drag. To do it programatically you have to jump through hoops:
pos = fplt.pg.Point(100, 80)
size = fplt.pg.Point(10,10)
pen = fplt.pg.mkPen('#c95')
ellipse = fplt.pg.EllipseROI(pos, size, pen=pen, movable=False)
ax.vb.addItem(ellipse)
Grethold commented
Grethold commented
Is it possible to delete this item (programatically)?
highfestiva commented
Did you try ax.vb.removeItem(ellipse)
?