Skip to content

Morris.js with format number in brazilian currency #801

@danilorago

Description

@danilorago

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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions