Alphabetical list Categories
ctext Render text after previous text
Call signature:

ctext(text, dx=0, dy=0)

Help text:

ctext(text) renders text where previous text plotting left off.
Optional arguments dx and dy modify placement by the given number of points.

Example:

import qplot as qp

import numpy as np

qp.figure('ctext_eg', 3, 3)

xx = np.array([1,2])

yy = np.array([2,1])

qp.marker('o')

qp.mark(xx, yy)

qp.at(1, 2)

qp.text('One', dy=20)

qp.ctext('Two', dx=5)

qp.ctext('Three', dx=10)

qp.ctext('Four', dy=5)

QPlot Documentation — (C) Daniel Wagenaar, 2014–2023