ODFPY  1.2.0
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 odf.namespaces import CHARTNS
22 from odf.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 
odf.chart.DataPoint
def DataPoint(**args)
Definition: chart.py:37
odf.chart.Equation
def Equation(**args)
Definition: chart.py:43
odf.chart.StockRangeLine
def StockRangeLine(**args)
Definition: chart.py:82
odf.chart.LabelSeparator
def LabelSeparator(**args)
Definition: chart.py:58
odf.chart.Categories
def Categories(**args)
Definition: chart.py:28
odf.chart.PlotArea
def PlotArea(**args)
Definition: chart.py:67
odf.chart.Title
def Title(**args)
Definition: chart.py:91
odf.element.Element
Creates a arbitrary element and is intended to be subclassed not used on its own.
Definition: element.py:357
odf.chart.ErrorIndicator
def ErrorIndicator(**args)
Definition: chart.py:46
odf.chart.Domain
def Domain(**args)
Definition: chart.py:40
odf.chart.MeanValue
def MeanValue(**args)
Definition: chart.py:64
odf.chart.Legend
def Legend(**args)
Definition: chart.py:61
odf.element
Definition: element.py:1
odf.chart.Chart
def Chart(**args)
Definition: chart.py:31
odf.chart.RegressionCurve
def RegressionCurve(**args)
Definition: chart.py:70
odf.chart.Subtitle
def Subtitle(**args)
Definition: chart.py:85
odf.chart.Floor
def Floor(**args)
Definition: chart.py:49
odf.chart.Series
def Series(**args)
Definition: chart.py:73
odf.chart.SymbolImage
def SymbolImage(**args)
Definition: chart.py:88
odf.chart.Wall
def Wall(**args)
Definition: chart.py:94
odf.chart.Footer
def Footer(**args)
Definition: chart.py:52
odf.chart.Grid
def Grid(**args)
Definition: chart.py:55
odf.chart.StockLossMarker
def StockLossMarker(**args)
Definition: chart.py:79
odf.namespaces
Definition: namespaces.py:1
odf.chart.Axis
def Axis(**args)
Definition: chart.py:25
odf.chart.DataLabel
def DataLabel(**args)
Definition: chart.py:34
odf.chart.StockGainMarker
def StockGainMarker(**args)
Definition: chart.py:76