Skip to content
New issue

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

chart does not render if ticks.min=0 when type='logarithmic' #2968

Closed
barsh opened this issue Jul 13, 2016 · 1 comment
Closed

chart does not render if ticks.min=0 when type='logarithmic' #2968

barsh opened this issue Jul 13, 2016 · 1 comment

Comments

@barsh
Copy link

barsh commented Jul 13, 2016

with these options the chart renders correctly:

 options: {
        scales: {
            yAxes: [{
                type: 'logarithmic',
                ticks: {
                    beginAtZero:true,
                    min: 0
                }
            }]
        }
    }

image

However, if a logarthmic scale starting with zero is needed, using min:0 as reflected below causes an empty chart:

 options: {
        scales: {
            yAxes: [{
                type: 'logarithmic',
                ticks: {
                    beginAtZero:true,
                    min: 0
                }
            }]
        }
    }

image

http://codepen.io/barsh/pen/jAadWp

@panzarino
Copy link
Contributor

Please only use one issue, #2966

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants