Axis Mark
The AxisX mark makes an X axis.
import plotynium as ply
plot = ply.plot(
[
ply.axis_x(
list(range(21)),
anchor="top",
label="Axis X",
)
],
margin_top=40
)
with open("axis_x.svg", "w") as file:
file.write(str(plot))