You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
By Daniel Romaniuk on https://groups.google.com/d/topic/pygooglechart/SHVd8jKkSUI/discussion
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.The text was updated successfully, but these errors were encountered: