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

        self.style = CaSeriesBarStyle()