javascript - color - Chart.js Radar Etiquetas Coordenadas
line color chart js (1)
Puede calcularlo usando la propiedad de escala. Aquí hay algo que dibuja un círculo azul en esos puntos una vez completada la animación.
onAnimationComplete: function () {
for (var i = 0; i < this.scale.valuesCount; i++) {
// get the poitn position
var pointLabelPosition = this.scale.getPointPosition(i, this.scale.calculateCenterOffset(this.scale.max) + 5);
// draw a circle at that point
this.chart.ctx.beginPath();
this.chart.ctx.arc(pointLabelPosition.x, pointLabelPosition.y, 5, 0, 2 * Math.PI, false);
this.chart.ctx.fillStyle = ''#77e'';
this.chart.ctx.fill();
this.chart.ctx.stroke();
}
}
Fiddle - http://jsfiddle.net/1jgmbyb7/
¿Hay alguna forma de obtener las coordenadas para las etiquetas en la tabla de radar? Estoy tratando de poner imágenes en lugar de texto en el área de etiquetas.