-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Description
I'm trying to use Morris to create a graph, and it's almost everything working. My issue is that I have to use the brazilian format with number. Should be "1.234,00" instead "1,234.00". Someone knows how to change? I tried a lot of times but I couldn't find a way... I tried to use the function format_number with PHP, but when I change to the brazilian format the graph don't open.
<script>
Morris.Bar({
element: 'mr-Volumetria',
data: [
{x: '12/2019', y: 60.72},
{x: '9/2020', y: 249.46},
{x: '10/2020', y: 275.54},
{x: '11/2020', y: 3501.50},
{x: '12/2020', y: 3739.24}
],
xkey: 'x',
ykeys: ['y'],
labels: ['Valor do mês'],
barColors: function (row, series, type) {
if(type === 'bar'){
var red = Math.ceil(255 * row.y / this.ymax);
return 'rgb('+red+',0,0)';
}else{
return '#000000';
}
}
});
</script>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels