#include <chplot.h>
int main() {
double x, y;
string_t text;
int datasetnum=0, point_type = 1, point_size = 5;
class CPlot plot;
plot.axisRange(PLOT_AXIS_X, 0, 7);
plot.axisRange(PLOT_AXIS_Y, 0, 5);
plot.title("point Types in Ch Plot");
for (y = 4; y >= 1; y--) {
for (x = 1; x <= 6; x++) {
sprintf(text, "%d", point_type);
plot.point(x, y, 0);
plot.plotType(PLOT_PLOTTYPE_POINTS, datasetnum, point_type, point_size);
plot.text(text, PLOT_TEXT_RIGHT, x-.25, y, 0);
datasetnum++; point_type++;
}
}
plot.plotting();
}