A radar chart is a graphical representation of displaying the multivariant data in the form of a two-dimensional chart. It has at least three or more quantitative variables represented on axes starting from the same point. This chart is also called the spider chart or star chart. It is useful in measuring performance metrics of any ongoing program to control the quality of improvement.
A basic example of radar chart usage for a PrimeNG and a PrimeReact project's progress would be as follows:
<p-chart type="radar" [data]="radardata" width="300" height="100">
</p-chart>
The component class should define the radar chart data with two datasets (PrimeNG and PrimeReact) for six phases of an SDLC process as shown here:
this.radardata = {
labels: ['Requirement', 'Design', 'Implementation', 'Testing',
'Deployment', 'Maintainance...