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