We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"does not support" is not quite right, it does support > 10 dataarrays but they do not have a color setting via default settings. It works well, if
opts.colors.length == valuesy.length
One fix: Generate more than 10 default colors in g.raphael.js line 703, or: add something like
if(valuesy.length > colors.lengt) { var missingcolorcount = valuesy.length - colors.length; for(var i = 0; i < missingcolorcount; i++) { colors.push('hsb(0.75, 0.75, 0.75'); // static color, can be changed. } }
in g.line.js at line 78++ after the color settings are set from g.color.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
"does not support" is not quite right, it does support > 10 dataarrays but they do not have a color setting via default settings. It works well, if
One fix: Generate more than 10 default colors in g.raphael.js line 703,
or: add something like
in g.line.js at line 78++ after the color settings are set from g.color.
The text was updated successfully, but these errors were encountered: