ODFPY 1.2.0
 
Loading...
Searching...
No Matches
chart.py
Go to the documentation of this file.
1# -*- coding: utf-8 -*-
2# Copyright (C) 2006-2013 Søren Roug, European Environment Agency
3#
4# This library is free software; you can redistribute it and/or
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
8#
9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# Lesser General Public License for more details.
13#
14# You should have received a copy of the GNU Lesser General Public
15# License along with this library; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17#
18# Contributor(s):
19#
20from __future__ import absolute_import
21from odf.namespaces import CHARTNS
22from odf.element import Element
23
24# Autogenerated
25def Axis(**args):
26 return Element(qname = (CHARTNS,'axis'), **args)
27
28def Categories(**args):
29 return Element(qname = (CHARTNS,'categories'), **args)
30
31def Chart(**args):
32 return Element(qname = (CHARTNS,'chart'), **args)
33
34def DataLabel(**args):
35 return Element(qname = (CHARTNS,'data-label'), **args)
36
37def DataPoint(**args):
38 return Element(qname = (CHARTNS,'data-point'), **args)
39
40def Domain(**args):
41 return Element(qname = (CHARTNS,'domain'), **args)
42
43def Equation(**args):
44 return Element(qname = (CHARTNS,'equation'), **args)
45
46def ErrorIndicator(**args):
47 return Element(qname = (CHARTNS,'error-indicator'), **args)
48
49def Floor(**args):
50 return Element(qname = (CHARTNS,'floor'), **args)
51
52def Footer(**args):
53 return Element(qname = (CHARTNS,'footer'), **args)
54
55def Grid(**args):
56 return Element(qname = (CHARTNS,'grid'), **args)
57
58def LabelSeparator(**args):
59 return Element(qname = (CHARTNS,'label-separator'), **args)
60
61def Legend(**args):
62 return Element(qname = (CHARTNS,'legend'), **args)
63
64def MeanValue(**args):
65 return Element(qname = (CHARTNS,'mean-value'), **args)
66
67def PlotArea(**args):
68 return Element(qname = (CHARTNS,'plot-area'), **args)
69
70def RegressionCurve(**args):
71 return Element(qname = (CHARTNS,'regression-curve'), **args)
72
73def Series(**args):
74 return Element(qname = (CHARTNS,'series'), **args)
75
76def StockGainMarker(**args):
77 return Element(qname = (CHARTNS,'stock-gain-marker'), **args)
78
79def StockLossMarker(**args):
80 return Element(qname = (CHARTNS,'stock-loss-marker'), **args)
81
82def StockRangeLine(**args):
83 return Element(qname = (CHARTNS,'stock-range-line'), **args)
84
85def Subtitle(**args):
86 return Element(qname = (CHARTNS,'subtitle'), **args)
87
88def SymbolImage(**args):
89 return Element(qname = (CHARTNS,'symbol-image'), **args)
90
91def Title(**args):
92 return Element(qname = (CHARTNS,'title'), **args)
93
94def Wall(**args):
95 return Element(qname = (CHARTNS,'wall'), **args)
96
Creates a arbitrary element and is intended to be subclassed not used on its own.
Definition element.py:361
Chart(**args)
Definition chart.py:31
LabelSeparator(**args)
Definition chart.py:58
RegressionCurve(**args)
Definition chart.py:70
ErrorIndicator(**args)
Definition chart.py:46
Grid(**args)
Definition chart.py:55
PlotArea(**args)
Definition chart.py:67
Equation(**args)
Definition chart.py:43
Footer(**args)
Definition chart.py:52
Categories(**args)
Definition chart.py:28
Subtitle(**args)
Definition chart.py:85
StockLossMarker(**args)
Definition chart.py:79
Series(**args)
Definition chart.py:73
MeanValue(**args)
Definition chart.py:64
StockRangeLine(**args)
Definition chart.py:82
Domain(**args)
Definition chart.py:40
DataLabel(**args)
Definition chart.py:34
StockGainMarker(**args)
Definition chart.py:76
SymbolImage(**args)
Definition chart.py:88
Legend(**args)
Definition chart.py:61
Axis(**args)
Definition chart.py:25
Floor(**args)
Definition chart.py:49
DataPoint(**args)
Definition chart.py:37
Wall(**args)
Definition chart.py:94
Title(**args)
Definition chart.py:91