前言:相信很多开发者会见过很多数据要在雷达图上展示,也自己使用过一些第三方或者直接封装。但是,有些第三方并不能很好地满足项目需要,自己就索性封装了一个。
可能跟大部分人封装的一样,主要功能如下:
- 可设置不超过20个元素的雷达图
- 支持文字是否可点击
- 支持分割值是否可显示
- 支持文字的展示样式
- 支持顺时针逆时针绘制
来看下效果图
1.如何使用
直接看代码,使用起来非常简单。
NSMutableArray *items = [NSMutableArray array];
NSArray *values = @[@100,@50,@70,@30,@50,@40,@45,];
NSArray *descs = @[@"苹果",@"香蕉",@"花生",@"橙子",@"车子",@"奶子",@"房子",];
for (int i = 0; i < values.count; i++) {
GBRadarChartDataItem *item = [GBRadarChartDataItem dataItemWithValue:[values[i] floatValue] description:descs[i]];
[items addObject:item];
}
GBRadarChart *radarChart = [[GBRadarChart alloc] initWithFrame:CGRectMake(0, 100, CGRectGetWidth(self.view.bounds), 400) items:items valueDivider:20];
radarChart.isShowGraduation = YES;
radarChart.labelStyle = GBRadarChartLabelStyleHorizontal;
[radarChart strokeChart];
[self.view addSubview:radarChart];
_radarChart = radarChart;
2.看下源代码,了解一下实现过程
首先是.h中的属性和方法
typedef NS_ENUM(NSUInteger, GBRadarChartLabelStyle) {
GBRadarChartLabelStyleCircle = 0, //圆环
GBRadarChartLabelStyleHorizontal, //水平
GBRadarChartLabelStyleHidden, //隐藏
};
@interface GBRadarChart : UIView
/**
初始化图表
@param frame frame
@param items 模型数组
@param unitValue 均分值
@return 对象
*/
- (id)initWithFrame:(CGRect)frame items:(NSArray <GBRadarChartDataItem *> *)items valueDivider:(CGFloat)unitValue;
/** 绘制图表 */
- (void)strokeChart;
/**
更新图表
@param chartData 模型数组
*/
- (void)updateChartWithChartData:(NSArray <GBRadarChartDataItem *> *)chartData;
/** Array of `RadarChartDataItem` objects, one for each corner. */
@property (nonatomic, strong) NSArray <GBRadarChartDataItem *> *chartDataItems;
/** 展示的样式 */
@property (nonatomic, assign) GBRadarChartLabelStyle labelStyle;
/** The unit of this chart ,default is 1 */
@property (nonatomic, assign) CGFloat valueDivider;
/** The maximum for the range of values to display on the chart */
@property (nonatomic, assign) CGFloat maxValue;
/** Default is gray. */
@property (nonatomic, strong) UIColor *webColor;
/** Default is green , with an alpha of 0.7 */
@property (nonatomic, strong) UIColor *plotFillColor;
/** Default is green*/
@property (nonatomic, strong) UIColor *plotStrokeColor;
/** Default is black */
@property (nonatomic, strong) UIColor *fontColor;
/** Default is orange */
@property (nonatomic, strong) UIColor *graduationColor;
/** Default is 12 */
@property (nonatomic, assign) CGFloat titleFontSize;
/** Tap the label will display detail value ,default is YES. */
@property (nonatomic, assign) BOOL canLabelTouchable;
/** is show graduation on the chart ,default is NO. */
@property (nonatomic, assign) BOOL isShowGraduation;
/** is display animated, default is YES */
@property (nonatomic, assign) BOOL displayAnimated;
/** 是否是顺时针方向绘制,默认是YES*/
@property (nonatomic, assign) BOOL clockwise;
@end
.m中代码就不粘贴了,直接上demo吧,里面有详细的实现过程,也可以根据自己的需求在里面直接修改代码。
传送门:RadarChartDemo
大家有什么不理解的或者好的意见,评论回复吧,我会尽量回复大家~~~