5.5.4 RadarMapper

This mapper is used just for Radar series. RadarMapper maps the polar values to the polar point.

1
2
3
4
//  MathAxis mapper Setting
MathAxisMapper axisMapper = new MathAxisMapper(0, 10);
// Radar MApper
AbstractRadarMapper radarMapper = new RadarMapper(axisMapper);

Other RadarMapper options

Set Initial axis
 
// Set Initial Axis rotation angle in radians
// Default Axis initial position is 0 angle.
 mapper.setInitAxisPosition(Math.PI);
Set Axis count
 
// Set Radar Axis number
mapper.setAxisCount(8);