//Number - Pixel width of the angle line
angleLineWidth : 1,
+ //Number - Interval at which to draw angle lines ("every Nth point")
+ angleLineInterval: 1,
+
//String - Point label font declaration
pointLabelFontFamily : "'Arial'",
```javascript
myRadarChart.removeData();
// Other points will now animate to their correct positions.
-```
\ No newline at end of file
+```
for (var i = this.valuesCount - 1; i >= 0; i--) {
var centerOffset = null, outerPosition = null;
- if (this.angleLineWidth > 0){
+ if (this.angleLineWidth > 0 && (i % this.angleLineInterval === 0)){
centerOffset = this.calculateCenterOffset(this.max);
outerPosition = this.getPointPosition(i, centerOffset);
ctx.beginPath();
//Number - Pixel width of the angle line
angleLineWidth : 1,
+ //Number - Interval at which to draw angle lines ("every Nth point")
+ angleLineInterval: 1,
+
//String - Point label font declaration
pointLabelFontFamily : "'Arial'",
lineColor: this.options.scaleLineColor,
angleLineColor : this.options.angleLineColor,
angleLineWidth : (this.options.angleShowLineOut) ? this.options.angleLineWidth : 0,
+ angleLineInterval: (this.options.angleLineInterval) ? this.options.angleLineInterval : 1,
// Point labels at the edge of each line
pointLabelFontColor : this.options.pointLabelFontColor,
pointLabelFontSize : this.options.pointLabelFontSize,