Simple scatter chart
SQL source code for this example:
DRAW POINTCHART WITH
AXIS BOTTOM
AXIS LEFT
AXIS TOP
AXIS RIGHT
GRID HORIZONTAL VERTICAL;
SELECT series AS series, x AS x, y AS y
FROM example_data;
DRAW POINTCHART WITH
AXIS BOTTOM
AXIS LEFT
AXIS TOP
AXIS RIGHT
GRID HORIZONTAL VERTICAL;
SELECT series AS series, x AS x, y AS y
FROM example_data;