コード例 #1
0
 def __init__(self, labels, width=450, height=450, params={}):
     self.top = None
     self.opac = 1
     LineChart.__init__(self, labels, width, height, params)
コード例 #2
0
ファイル: stacked.py プロジェクト: nlittlepoole/chart.py
	def __init__(self, labels, width=450, height=450, params={}):
		self.top = None
		self.opac = 1
		LineChart.__init__(self,labels,width,height,params)
コード例 #3
0
 def __init__(self, labels, width=450, height=450, params={}):
     LineChart.__init__(self, labels, width, height, params)
     self.type = 'Bar'
     self.struct = 'bars'
コード例 #4
0
ファイル: bar.py プロジェクト: nlittlepoole/chart.py
	def __init__(self, labels, width=450, height=450, params={}):
		LineChart.__init__(self,labels,width,height,params)
		self.type = 'Bar'
		self.struct = 'bars'