Daniel Romaniuk
unread,May 10, 2011, 12:28:18 AM5/10/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Python Google Chart
I noticed what appear to be two small errors in the script. In the
following two functions:
def set_axis_positions(self, axis_index, positions):
..................
raise InvalidParametersException('Axis index %i has not
been ' \
'created' % axis)
def set_axis_style(self, axis_index, colour, font_size=None, \
alignment=None):
...................
raise InvalidParametersException('Axis index %i has not
been ' \
'created' % axis)
I think you mean
% axis_index)
instead of
% axis)
as `axis` is not defined at that point in the program.
Kind Regards,
Daniel Romaniuk