Skip to content
Snippets Groups Projects
Commit cab2dce0 authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] web: Y-axis formatting

In case of a line graph, the values of the Y axis are not formatted as
numbers, although they are on the bar graph.
parent 449a160e
No related branches found
No related tags found
No related merge requests found
......@@ -301,6 +301,7 @@ return Widget.extend({
});
chart.xAxis.tickValues(tickValues)
.tickFormat(tickFormat);
chart.yAxis.tickFormat(function(d) { return openerp.web.format_value(d, { type : 'float' });});
chart(svg);
this.to_remove = chart.update;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment