I\'m referring this link for generation of Pie Chart. In this the colors are pre-defined for each data, ie 10 colors for 10 data points. What if I have 11 data points and then t
You can also provide from reportlab.lib.colors import Color
like:
Color(red=0, green=0, blue=1, alpha=1) # gives blue
Color(red=1, green=0, blue=0, alpha=1) # gives red
It's easier to manage those arguments than Hex's.
So you could provide a dynamicaly generated list of Color
instances. You could yield
an iterator that will generate your 'Catchy' colors. I don't think I can define your 'catchyness' for you better than your self :)