예제 #1
0
    def __init__(self, main_graph, xaxis, yaxis):
        ''' set dna default parameters
            data form: list of size 3 tuples
                       (x_st, x_fi, y)
        '''
        CaGraphSeries.__init__(self, main_graph, xaxis, yaxis)

        self.style = CaSeriesDNAStyle()
예제 #2
0
파일: dna.py 프로젝트: yaacov/cagraph
 def __init__(self, main_graph, xaxis, yaxis):
     ''' set dna default parameters
         data form: list of size 3 tuples
                    (x_st, x_fi, y)
     '''
     CaGraphSeries.__init__(self, main_graph, xaxis, yaxis)
     
     self.style = CaSeriesDNAStyle()
예제 #3
0
파일: labels.py 프로젝트: Master2uiroga/AUR
 def __init__(self, main_graph, xaxis, yaxis):
     ''' set labels default parameters '''
     CaGraphSeries.__init__(self, main_graph, xaxis, yaxis)
     
     self.style = CaSeriesLabelStyle()
예제 #4
0
    def __init__(self, main_graph, xaxis, yaxis):
        ''' set bars default parameters '''
        CaGraphSeries.__init__(self, main_graph, xaxis, yaxis)

        self.style = CaSeriesBarStyle()