I am working in a project using PyQt4 and Matplotlib libraries.I created a matplotlib figure and i added a toolbar.
Is there any way to disable the coordinates that
You can reassign the axes format_coord to show anything you like (see, for example this answer or this answer).
So to disable it altogether, you could set it to an empty string, like this:
self.axes.format_coord = lambda x, y: ""