my-archives / nchart

nChart for node.js inspired by Chart.js.
MIT License
48 stars 10 forks source link

Scale values missing from the line graph #2

Closed aliou closed 10 years ago

aliou commented 10 years ago

When using chart.js, I have the scale values appearing on the left of the graph like this:

capture decran 2014-03-02 a 11 23 23 pm

But, when using nchart, they are not appearing:

reports_per_day.

I'm using the same options for both graphs:

options = {
    scaleOverlay: true,
    bezierCurve: false
}

Do you know where this problem could come from?

fundon commented 10 years ago

@aliou In lastest chart.js, scaleShowLabels option defaults to true. In nchart, scaleShowLabels option defaults to false. So we can add scaleShowLabels option and sets it to true.

aliou commented 10 years ago

Yes, that was it! Thanks! :+1:

aliou commented 10 years ago

Also, I made a pr (#3) to change this.