Skip to main content
Ctrl+K
Logo image

Site Navigation

  • Installation
  • Tutorials
  • Examples
  • Releases
  • Publications
  • Tips

Site Navigation

  • Installation
  • Tutorials
  • Examples
  • Releases
  • Publications
  • Tips

Section Navigation

  • Introductory
    • Line and curve
    • Scatter
    • Contour
    • Pseudocolor
    • Normalization
    • Span
    • Text
    • Polygon
    • Quiver
    • Grid
    • Axis labels
    • Triangular grid
    • AxLine
    • Legend
  • Intermediate
    • With normal Matplotlib plots
    • Style sheets
    • Inset
  • Statistics
    • HexBin
    • TriBin
    • Binned & scatter
  • Axis and Tick
    • Axis-label position
    • Axis-label rotation
    • Tick position
    • Tick direction
    • Tick rotation
    • Tick formatters
    • Tick locators
    • Manual tick positions
    • Manual tick labels
    • Colored axes
    • Tick labels inside triangle
  • Ternary Limits
    • Triangular limits
    • Hexagonal limits
    • Plotting region fitting
  • Transforms
    • Cartesian coordinates
    • Ticks
    • Plot fixed onto triangle
    • Arrows along axes
  • Triangle
    • Aspect
    • Triangle rotation
    • Arbitrary triangle
  • Miscellaneous
    • Mpltern logo
    • Dirichlet distribution
    • Evolutionary game theory
    • USDA soil texture classes
  • Examples
  • Introductory
  • Text

Note

Go to the end to download the full example code

Text#

Texts cant be put using ax.text in the same way as Matplotlib.

06.text
import matplotlib.pyplot as plt
import mpltern  # noqa: F401


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

c = 1.0 / 3.0
ax.text(c, c, c, 'center', ha='center', va='center')

plt.show()

Download Python source code: 06.text.py

Download Jupyter notebook: 06.text.ipynb

Gallery generated by Sphinx-Gallery

previous

Span

next

Polygon

Show Source

© Copyright 2019-2023 Yuji Ikeda.

Created using Sphinx 5.3.0.

Built with the PyData Sphinx Theme 0.13.3.