Axis labels#

Axis labels can be given using e.g. ax.set_tlabel. For more detailed control, see Axis and Tick.

10.axis labels
import matplotlib.pyplot as plt
import mpltern  # noqa: F401


ax = plt.subplot(projection='ternary')

ax.set_tlabel('Top')
ax.set_llabel('Left')
ax.set_rlabel('Right')

plt.show()

Gallery generated by Sphinx-Gallery