1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef CHART_DEFS_H
6#define CHART_DEFS_H
7
8
9enum ChartAxisLocation {
10	CHART_AXIS_LEFT,
11	CHART_AXIS_TOP,
12	CHART_AXIS_RIGHT,
13	CHART_AXIS_BOTTOM
14};
15
16
17#endif	// CHART_DEFS_H
18