Beispiel #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()
Beispiel #2
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()
Beispiel #3
0
 def __init__(self, main_graph, xaxis, yaxis):
     ''' set labels default parameters '''
     CaGraphSeries.__init__(self, main_graph, xaxis, yaxis)
     
     self.style = CaSeriesLabelStyle()
Beispiel #4
0
    def __init__(self, main_graph, xaxis, yaxis):
        ''' set bars default parameters '''
        CaGraphSeries.__init__(self, main_graph, xaxis, yaxis)

        self.style = CaSeriesBarStyle()