Is there a way to control the chart colors in python?

plot1 = Chart('Plot1')
plot1.AddSeries(Series('price',SeriesType.Line,0,'red'))

plot1.AddSeries(Series('ema',SeriesType.Line,0,'blue'))

self.AddChart(plot1)

I've tried this at the initialization block but it doesn't work.

Author