Merge pull request #767 from anaggh/master

Fix floats bug
This commit is contained in:
Diego Najar 2018-09-03 22:07:05 +03:00 committed by GitHub
commit b5d4ceda09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -116,7 +116,9 @@ $script = <<<EOF
var options = { var options = {
height: 250, height: 250,
onlyInteger: true axisY: {
onlyInteger: true,
}
}; };
new Chartist.Line('.ct-chart', data, options); new Chartist.Line('.ct-chart', data, options);