KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
AYPieChart
★ 24
Open GitHub ↗
PieChart view for iOS
Download README (.md)
Explore Similar Repositories
ImmuneSpaceR
:
An R Interface to the ImmuneSpace database portal
firebase-rpi-arduino
:
A few JavaScript examples that integrate a Firebase with the physical world.
fabric-completion
:
Bash completion for Fabric
tde
:
Triangular dislocation elements in a homogeneous elastic half space
OpenSonos
:
A local music server for Sonos written in C#
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
AYPieChart
?
Download (.md)
# AYPieChart Configurable pie chart ### Preview        ### Usage Import required headers ```objc #import "AYPieChartView.h" #import "AYPieChartEntry.h" ``` Create instance of AYPieChartView and attach it to another view. Create instances of AYPieChartEntry according to your data and attach entries to AYPieChartView ```objc NSArray *chartValues = @[[AYPieChartEntry entryWithValue:firstDataValue color:[UIColor redColor] detailsView:nil], [AYPieChartEntry entryWithValue:secondDataValue color:[UIColor brownColor] detailsView:nil] ]; self.pieChartView.pieValues = chartValues; ``` Thats all for simple case! For more interesting cases pls review demo.