Merge pull request #328 from markbrough/master

Fix bug with dates, fixes #327 - thx to @markbrough.
This commit is contained in:
Rufus Pollock 2013-02-23 08:17:39 -08:00
commit ebc56dace7

View File

@ -191,8 +191,8 @@ my.Flot = Backbone.View.extend({
if (typeof label !== 'string') {
label = label.toString();
}
if (self.state.attributes.graphType !== 'bars' && label.length > 8) {
label = label.slice(0, 5) + "...";
if (self.state.attributes.graphType !== 'bars' && label.length > 10) {
label = label.slice(0, 10) + "...";
}
return label;
@ -322,12 +322,7 @@ my.Flot = Backbone.View.extend({
var isDateTime = (xtype === 'date' || xtype === 'date-time' || xtype === 'time');
if (isDateTime) {
if (self.state.attributes.graphType != 'bars' &&
self.state.attributes.graphType != 'columns') {
x = new Date(x).getTime();
} else {
x = index;
}
x = index;
} else if (typeof x === 'string') {
x = parseFloat(x);
if (isNaN(x)) {