Issue #475: Fix to be able to graph columns with percentage values
This commit is contained in:
committed by
Teofilo Sibileau
parent
db7fad0a7f
commit
bb0d41a2e4
@@ -343,7 +343,7 @@ my.Flot = Backbone.View.extend({
|
||||
}
|
||||
|
||||
var yfield = self.model.fields.get(field);
|
||||
var y = doc.getFieldValueUnrendered(yfield);
|
||||
var y = parseFloat(doc.getFieldValueUnrendered(yfield));
|
||||
|
||||
if (self.state.attributes.graphType == 'bars') {
|
||||
points.push([y, x]);
|
||||
|
||||
Reference in New Issue
Block a user