getRadarValues method

  1. @override
List<double> getRadarValues(
  1. int radarIndex
)
override

Get the radar drawing values of the radar chart according to the specified index. The values determine radar's vertexes.The length must be same as RadarChart.sidesCount. The value must range from RadarChart.minValue to RadarChart.maxValue. Put values to the list by clockwise order, start from 12 o'clock.

Implementation

@override
List<double> getRadarValues(int radarIndex) {
  return dataList[radarIndex];
}