progressbar.js
progressbar.js copied to clipboard
Text not appearing
I have created the following ProgressBar:
var line = new ProgressBar.Line(id, {
color: '#FFEA82',
duration: time,
strokeWidth: 10,
svgStyle: {
borderRadius: '10px;'
},
text: {
value: 'Text',
style: {
color: '#f00'
}
},
from: { color: '#FFEA82' },
to: { color: '#ED6A5A' },
easing: 'easeInOut',
step: (state, line) => {
line.path.setAttribute('stroke', state.color);
}
});
However, the text is not showing in / near the progess-bar. I don't see the text added to the container either.

Same problem!