>キャンバスの中央に点がでるような

class Index(object):
def __init__(self, ax):
self.ax = ax

def next(self, event):
xdata = event.xdata
ydata = event.ydata
self.ax.plot(0, 0, color="red", marker="o")
plt.draw()

(略)

bnext.on_clicked(Index(ax).next)