ffcf3b0180f7e807969d38fbe282a5d97fcaffb4
[pspp-builds.git] / src / output / charts / plot-chart.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2004 Free Software Foundation, Inc.
3    Written by John Darrington <john@darrington.wattle.id.au>
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <stdarg.h>
23 #include <string.h>
24 #include <stdio.h>
25 #include <float.h>
26 #include <assert.h>
27 #include <math.h>
28
29
30 #include "chart-geometry.h"
31 #include "chart.h"
32 #include "str.h"
33 #include "alloc.h"
34 #include "manager.h"
35 #include "output.h"
36
37
38 #ifndef PLOT_CHART_H
39 #define PLOT_CHART_H
40
41                                                              
42 extern const char *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
71 #endif