Examples: examples/unordered.pyΒΆ

_images/unordered.png

Back to Examples

1
2
3
4
5
6
7
8
line = Line()
line.xValues = [2, 1, 3, 4, 0]
line.yValues = [2, 1, 3, 4, 0]

plot = Plot()
plot.add(line)

plot.save("unordered.png")