ODFPY  1.2.0
 All Classes Namespaces Files Functions Variables
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 #
20 from __future__ import absolute_import
21 from .namespaces import CHARTNS
22 from .element import Element
23 
24 # Autogenerated
25 def Axis(**args):
26  return Element(qname = (CHARTNS,'axis'), **args)
27 
28 def Categories(**args):
29  return Element(qname = (CHARTNS,'categories'), **args)
30 
31 def Chart(**args):
32  return Element(qname = (CHARTNS,'chart'), **args)
33 
34 def DataLabel(**args):
35  return Element(qname = (CHARTNS,'data-label'), **args)
36 
37 def DataPoint(**args):
38  return Element(qname = (CHARTNS,'data-point'), **args)
39 
40 def Domain(**args):
41  return Element(qname = (CHARTNS,'domain'), **args)
42 
43 def Equation(**args):
44  return Element(qname = (CHARTNS,'equation'), **args)
45 
46 def ErrorIndicator(**args):
47  return Element(qname = (CHARTNS,'error-indicator'), **args)
48 
49 def Floor(**args):
50  return Element(qname = (CHARTNS,'floor'), **args)
51 
52 def Footer(**args):
53  return Element(qname = (CHARTNS,'footer'), **args)
54 
55 def Grid(**args):
56  return Element(qname = (CHARTNS,'grid'), **args)
57 
58 def LabelSeparator(**args):
59  return Element(qname = (CHARTNS,'label-separator'), **args)
60 
61 def Legend(**args):
62  return Element(qname = (CHARTNS,'legend'), **args)
63 
64 def MeanValue(**args):
65  return Element(qname = (CHARTNS,'mean-value'), **args)
66 
67 def PlotArea(**args):
68  return Element(qname = (CHARTNS,'plot-area'), **args)
69 
70 def RegressionCurve(**args):
71  return Element(qname = (CHARTNS,'regression-curve'), **args)
72 
73 def Series(**args):
74  return Element(qname = (CHARTNS,'series'), **args)
75 
76 def StockGainMarker(**args):
77  return Element(qname = (CHARTNS,'stock-gain-marker'), **args)
78 
79 def StockLossMarker(**args):
80  return Element(qname = (CHARTNS,'stock-loss-marker'), **args)
81 
82 def StockRangeLine(**args):
83  return Element(qname = (CHARTNS,'stock-range-line'), **args)
84 
85 def Subtitle(**args):
86  return Element(qname = (CHARTNS,'subtitle'), **args)
87 
88 def SymbolImage(**args):
89  return Element(qname = (CHARTNS,'symbol-image'), **args)
90 
91 def Title(**args):
92  return Element(qname = (CHARTNS,'title'), **args)
93 
94 def Wall(**args):
95  return Element(qname = (CHARTNS,'wall'), **args)
96 
def Chart
Definition: chart.py:31
def SymbolImage
Definition: chart.py:88
def ErrorIndicator
Definition: chart.py:46
def DataPoint
Definition: chart.py:37
def Wall
Definition: chart.py:94
def Legend
Definition: chart.py:61
def LabelSeparator
Definition: chart.py:58
def StockLossMarker
Definition: chart.py:79
def Axis
Definition: chart.py:25
def Subtitle
Definition: chart.py:85
def StockRangeLine
Definition: chart.py:82
def Categories
Definition: chart.py:28
def Series
Definition: chart.py:73
def StockGainMarker
Definition: chart.py:76
def DataLabel
Definition: chart.py:34
def PlotArea
Definition: chart.py:67
def MeanValue
Definition: chart.py:64
def Floor
Definition: chart.py:49
def Grid
Definition: chart.py:55
def RegressionCurve
Definition: chart.py:70
def Footer
Definition: chart.py:52
def Title
Definition: chart.py:91
def Equation
Definition: chart.py:43
def Domain
Definition: chart.py:40