i’m using quickchart.js to create a progress bar and i have a problem. When I create a progress bar by assigning it a background color it works but there is a permanent blue border that I can’t remove. Here the first example
I tried to change the color of the border but it does not change this border. Here the second example with border color
JavaScript
x
16
16
1
{
2
type: 'progressBar',
3
data: {
4
datasets: [{
5
backgroundColor: '#32cd32',
6
data: [50],
7
datalabels: {
8
font: {
9
style: 'Arial',
10
size: 18,
11
}
12
}
13
}]
14
}
15
}
16
Is there a possibility to remove this border or change its color ?
Advertisement
Answer
You can define a second dataset
that specifies the total (100%) of the progress bar.
In order to remove the border, this could look as follows:
JavaScript
1
14
14
1
{
2
type: 'progressBar',
3
data: {
4
datasets: [{
5
backgroundColor: '#32cd32',
6
data: [50]
7
},
8
{
9
borderColor: 'white',
10
data: [100]
11
}]
12
}
13
}
14
Simply change borderColor
in case you want a specific border to be drawn.