https://github.com/youkchansim/CSPieChart
This is pie chart that is very easy to use and customizable design.
https://github.com/youkchansim/CSPieChart
Last synced: 4 months ago
JSON representation
This is pie chart that is very easy to use and customizable design.
- Host: GitHub
- URL: https://github.com/youkchansim/CSPieChart
- Owner: youkchansim
- License: mit
- Created: 2017-01-04T14:57:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T15:54:49.000Z (about 6 years ago)
- Last Synced: 2024-11-07T20:44:02.590Z (5 months ago)
- Language: Swift
- Homepage:
- Size: 6.92 MB
- Stars: 41
- Watchers: 3
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - CSPieChart - iOS PieChart Opensource. This is very easy to use and customizable. (Charts)
- awesome-ios-star - CSPieChart - iOS PieChart Opensource. This is very easy to use and customizable. (Charts)
- fucking-awesome-ios - CSPieChart - iOS PieChart Opensource. This is very easy to use and customizable. (Charts)
- fucking-awesome-ios - CSPieChart - iOS PieChart Opensource. This is very easy to use and customizable. (Charts)
README
# CSPieChart

[](http://cocoapods.org/pods/CSPieChart)
[](http://cocoapods.org/pods/CSPieChart)




## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
## Installation
CSPieChart is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod "CSPieChart"
```## Useage


First Step - `import CSPieChart` to your project
Second Step - You should `CSPieChartData`. This is model for piechart.
```Swift
let data = CSPieChartData(key: "test", value: 70)
```Third Step - Add a delegate `CSPieChartDataSource` & `CSPieChartDelegate` to your class & add two delegate methods
```Swift
public protocol CSPieChartDataSource {/// Component data
func numberOfComponentData() -> Int
func pieChart(_ pieChart: CSPieChart, dataForComponentAt index: Int) -> CSPieChartData/// Component colors
func numberOfComponentColors() -> Int
func pieChart(_ pieChart: CSPieChart, colorForComponentAt index: Int) -> UIColor/// If you are implement this, you can show subView. example) 'UIImageView' or 'UILable'
@objc optional func numberOfComponentSubViews() -> Int
@objc optional func pieChart(_ pieChart: CSPieChart, viewForComponentAt index: Int) -> UIView/// If you are implement this, you apply color to line path
/// Otherwish line color is applied default 'black'
@objc optional func numberOfLineColors() -> Int
@objc optional func pieChart(_ pieChart: CSPieChart, lineColorForComponentAt index: Int) -> UIColor
}
```
```Swift
public protocol CSPieChartDelegate {/// Component select
@objc optional func pieChart(_ pieChart: CSPieChart, didSelectComponentAt index: Int)
}
```You can set some options
```Swift
// Pie chart radius rate that is percentage of frames in the superview. default is 0.7
public var pieChartRadiusRate: CGFloat = 0.7
// Pie chart line length between component and subview. default is 10
public var pieChartLineLength: CGFloat = 10
// This is piechart component selecting animation. default is none
public var seletingAnimationType: SelectingAnimationType = .none
}
```Last Step - You must call `show`.
### Example
```Swift
func ViewDidLoad(...) {
....
pieChart.show(animated: true)
}
```If you need more information, check example
## Author
chansim.youk, [email protected]
## License
CSPieChart is available under the MIT license. See the LICENSE file for more info.