1👍
- [Chartjs]-ChartJS: Translate x axis month to other languages
- [Chartjs]-Why isn't my Angular 4 ChartJS component rendering?
1👍
The border can be removed using the following configuration options:
var options = {
elements: {
arc: {
borderWidth: 0, // <-- Set this to zero
borderColor:'#333'
}
}
};
A full example in fiddle:
https://jsfiddle.net/vy7npk0j/2/
- [Chartjs]-How to change the Y-axis values from numbers to strings in Chart.js?
- [Chartjs]-Hiding tooltip color box in Chart.js not working
Source:stackexchange.com