React-chartjs-2: Remove border

Created on 5 Dec 2016  路  4Comments  路  Source: reactchartjs/react-chartjs-2

I will remove border around the doughnut graph.

Is-it possible ?

question

Most helpful comment

Hey @n1c01a5

please use the follow option object to remove the border.

const options = {
    elements: {
        arc: {
            borderWidth: 0
        }
    }
}

All 4 comments

Do you mean the white border between the segments? Or the border around?

@jerairrest the border around

Hey @n1c01a5

please use the follow option object to remove the border.

const options = {
    elements: {
        arc: {
            borderWidth: 0
        }
    }
}

@jerairrest I tried with your option object doesn't seem to work for me

Was this page helpful?
0 / 5 - 0 ratings

Related issues

alexchoiweb picture alexchoiweb  路  3Comments

jbbae picture jbbae  路  5Comments

souuu picture souuu  路  4Comments

flyingpath picture flyingpath  路  5Comments

Holychung picture Holychung  路  4Comments