I'm having the hardest time achieving the following:
I need to stop the x labels from showing after the vertical dashed line seen in the image:

Basically, I want to eliminate the 5 in this example.
I successfully stopped the ticks with the condition placed on "set_ticks", but the labels keep displaying.
My code:
ax2 = plt.subplot()
ax2.pcolormesh(xext, ye, Zext, cmap='hot')
ax2.set_xticks([a for a in xext if a<myval], minor=True)
ax2.axvline(myval, linestyle='--', color='white')
plt.show()
A solution like writing a list of [1,2,3,4] would not help me.
I need this to work for a large number of examples where all I know is the limit value, or myval from the code above.
(I am restating and narrowing down a question I posted before, now deleted.)
You only changed the minor ticks (the very short lines) on the x-axis. The major ticks also should be changed.
ax.get_xticks()
gives a list of the current ticks, which you can filter and apply again: