Is there a way to have two colors of text on an axis label?  I am  
trying to plot sales dollars and margin dollars on the same graph in  
different colors.  That works well enough but I'm having a hard time  
labeling the yaxis

plot_date(dates,units,visible = False)
bar(dates,sales,width=5.0,color = salesColor)
bar(dates,margin,width=5.0,color = marginColor)
ylabel("Sales $\nMargin $",color=salesColor)

gets me "Sales $" in the proper color but I can't figure out if it is  
possible to have "Margin $"  in its color as well.

Thanks!
John


-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to