1521777c4605da414a3cc85b1fc12d0c58b97e0a
[pspp-builds.git] / src / output / charts / plot-chart.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2004 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdarg.h>
22 #include <string.h>
23 #include <stdio.h>
24 #include <float.h>
25 #include <assert.h>
26 #include <math.h>
27
28
29 #include <math/chart-geometry.h>
30 #include <output/chart.h>
31
32 #include <libpspp/str.h>
33 #include <libpspp/alloc.h>
34 #include <output/manager.h>
35 #include <output/output.h>
36
37
38 #ifndef PLOT_CHART_H
39 #define PLOT_CHART_H
40
41
42 extern const char *const data_colour[];
43
44 enum tick_orientation {
45   TICK_ABSCISSA=0,
46   TICK_ORDINATE
47 };
48
49
50 /* Draw a tick mark at position
51    If label is non zero, then print it at the tick mark
52 */
53 void draw_tick(struct chart *chart,
54           enum tick_orientation orientation,
55           double position,
56                const char *label, ...);
57
58
59 /* Write the title on a chart*/
60 void   chart_write_title(struct chart *chart, const char *title, ...);
61
62
63 /* Set the scale for the abscissa */
64 void  chart_write_xscale(struct chart *ch, double min, double max, int ticks);
65
66
67 /* Set the scale for the ordinate */
68 void  chart_write_yscale(struct chart *ch, double smin, double smax, int ticks);
69
70 void chart_write_xlabel(struct chart *ch, const char *label) ;
71
72 /* Write the ordinate label */
73 void  chart_write_ylabel(struct chart *ch, const char *label);
74
75 #endif