KO
|
EN
gitlite — search
Search
#mcp
#python
#ai
#llm
#rust
#automation
#cli
#machine-learning
#typescript
#mcp-server
#java
#security
RadarChartView
★ 37
Open GitHub ↗
RadarChart for iOS
Download README (.md)
Explore Similar Repositories
powershell
:
Just random powershell things I've put together.
WebPage-Cloner
:
This is a python script which clones a given website or web page with all the CSS,JS and Images.
crunchbase-ml
:
Merge and Acquisitions Prediction based on M&A information from Crunchbase.
jqaas
:
jq as a service
Cycript
:
Cycript allows developers to explore and modify running applications on either iOS or Mac OS X。
// 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
RadarChartView
?
Download (.md)
# RadarChartView [](http://cocoapods.org/pods/RadarChartView) [](http://cocoapods.org/pods/RadarChartView) [](http://cocoapods.org/pods/RadarChartView)  ## Usage ```swift var dataSet = ChartDataSet() dataSet.entries = [ChartDataEntry(value: 100), ChartDataEntry(value: 70), ChartDataEntry(value: 80), ChartDataEntry(value: 40), ChartDataEntry(value: 90), ChartDataEntry(value: 30)] var dataSet2 = ChartDataSet() dataSet2.entries = [ChartDataEntry(value: 50), ChartDataEntry(value: 50), ChartDataEntry(value: 70), ChartDataEntry(value: 90), ChartDataEntry(value: 70), ChartDataEntry(value: 100)] dataSet2.strokeColor = .red dataSet2.fillColor = UIColor(red: 1, green: 0, blue: 0, alpha: 0.5) let chartView = RadarChartView() chartView.dataSets = [dataSet, dataSet2] chartView.titles = ["Apple", "Beef", "Cheese", "Donuts", "Egg", "Fig"] chartView.webTitles = ["20", "40", "60", "80", "100"] chartView.frame = CGRect(x: 0, y: 100, width: view.frame.width, height: view.frame.width) view.addSubview(chartView) ``` If you use `RadarChartView` in UITableViewCell, watch this [sample](https://github.com/furuyan/RadarChartView/blob/master/Example/RadarChartView/RadarChartViewController2.swift) ## Example To run the example project, clone the repo, and run `pod install` from the Example directory first. ## Requirements - iOS 9.0+ - Swift 4.0 ## Installation RadarChartView is available through [CocoaPods](http://cocoapods.org) or [Carthage](https://github.com/Carthage/Carthage). ### CocoaPods ```ruby pod "RadarChartView" ``` ### Carthage ``` github "furuyan/RadarChartView" ``` ## Author furuyan, kfuruyan@gmail.com ## License RadarChartView is available under the MIT license. See the LICENSE file for more info.