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
Even in the examples (on firefox here but chrome is the same), ymax in the updating.html file shows this: http://www.evernote.com/shard/s2/sh/a0219fe9-5160-4bd3-949f-4fa0a776ea9e/a879824711e30dc856dfcbf25104c0cd
In my own graphs, the result is very similar as soon as I used something like:
ymax:10,
The text was updated successfully, but these errors were encountered:
Modifying slightly the decimal.html example with a syntax similar to updating.html leads the results highlighted above:
var decimal_data = []; for (var x = 0; x <= 360; x += 10) { decimal_data.push({ x: x, y: Math.sin(Math.PI * x / 180).toFixed(4) }); } window.m = Morris.Line({ element: 'graph', data: decimal_data, xkey: 'x', ykeys: ['y'], labels: ['sin(x)'], parseTime: false, ymax: 0.7, });
Sorry, something went wrong.
8d7522a
Hi there -- you're right, there was a bug in ymin/ymax. Try grabbing the latest .js from the repo and let me know if it fixes the problem for you.
Cheers!
Olly
That did it, thanks for fixing so quickly.
No branches or pull requests
Even in the examples (on firefox here but chrome is the same), ymax in the updating.html file shows this: http://www.evernote.com/shard/s2/sh/a0219fe9-5160-4bd3-949f-4fa0a776ea9e/a879824711e30dc856dfcbf25104c0cd
In my own graphs, the result is very similar as soon as I used something like:
ymax:10,
The text was updated successfully, but these errors were encountered: