Small project to show circular chart with customizable number and range of colors on outer ring with background transparency/colors configuration. Demo project included. Works ok during orientation changes & redrawing. Supports also legend view.
Customizable colors, legend can be turned off or on (to see legend on look at big screenshots below)
Customizable percentage of each color in ring. You can also change the point where you want to start drawing colors: You can attach image or text (or nothing) in the middle: Border width can be changed: Background can be clear or with any color. If total percentage is lower than 100%, rest of circle is transparent (like on the right):You can do much more than this ^^
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like AFNetworking in your projects. See the "Getting Started" guide for more information.
pod "CircleStatus", "~> 1.1.3"
In your projects git folder type:
git submodule init
git submodule add --copy link to the repo--
git submodule update
Copy all files from CircleStatus/CircleStatus folder.
This is strongly disadvised as you won't be able to see code updates. Clone or download the source, copy all files from CircleStatus/CircleStatus folder.
Clone and see the demo for more examples about implementation. You can add the view via Storyboard or using code:
// in your view.h download the library
#import <CircleStatus/CSView.h>
// then add a property
@property (nonatomic, strong) CSView *csView;
// alloc & init the view or setup this via storyboard
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
_csView = [[CSView alloc] init];
[self addSubview:_csView];
}
return self;
}
// update the frame
- (void)layoutSubviews {
[super layoutSubviews];
CGRect bounds = self.bounds;
CGSize csSize = CGSizeMake(CGRectGetWidth(bounds) - 20.f, 100.f); // chart size
csSize.height = [_csView.legendView heightForChartSize:csSize]; // request chart height from legendView
[_csView setFrame:CGRectIntegral(CGRectMake(CGRectGetMidX(bounds) - (csSize.width / 2), CGRectGetMidY(bounds) - (csSize.height / 2), csSize.width, csSize.height))];
}
// in your controller you can change outlook of the control
- (void)viewDidLoad {
[super viewDidLoad];
// fill with data
[_csExampleView.csView setPercentageColorArray:@[[[CSPercentageColor alloc] initWithColor:[UIColor greenColor] percentage:0.7f],
[[CSPercentageColor alloc] initWithColor:[UIColor yellowColor] percentage:0.3f]]];
// setup middle view: either text or image or nothing
[_csExampleView.csView.textLabel setText:@"Chart"];
// [_csExampleView.csView.imageView setImage:[UIImage imageNamed:@"test"]];
// setup chart view
[_csExampleView.csView setRadius:50.f];
[_csExampleView.csView setFillColor:[UIColor colorWithWhite:1.f alpha:0.4f]];
[_csExampleView.csView setStartAngle:15];
[_csExampleView.csView setLineWidth:10];
// setup legend
[_csExampleView.csView setShowsLegend:NO];
[_csExampleView.csView.legendView setLegendPosition:CSLegendPositionRight];
}
Natalia Osiecka, [email protected] AppUnite.com
Available under the Apache 2.0 license. See the LICENSE file for more info.
Requires Xcode 5, targeting either iOS 5.0 or higher