Try the following:
//sort api to points
this.points = JSON.parse(JSON.stringify(this.dataLeaders));
let pointsL = this.points.sort(function(a, b) {
return parseInt(b.sPoints) - parseInt(a.sPoints);
});
Try the following:
//sort api to points
this.points = JSON.parse(JSON.stringify(this.dataLeaders));
let pointsL = this.points.sort(function(a, b) {
return parseInt(b.sPoints) - parseInt(a.sPoints);
});