Swift LineChart alternatives and similar libraries
Based on the "Charts" category.
Alternatively, view Swift LineChart alternatives based on common mentions on social networks and blogs.
-
Charts
Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart. -
PNChart
A simple and beautiful chart lib used in Piner and CoinsMan for iOS -
Scrollable-GraphView
An adaptive scrollable graph view for iOS to visualise simple discrete datasets. Written in Swift. -
JBChartView
iOS-based charting library for both line and bar graphs. -
BEMSimpleLineGraph
Elegant Line Graphs for iOS (charting library). -
SwiftCharts
Easy to use and highly customizable charts library for iOS -
XYPieChart
A simple and animated Pie Chart for your iOS app. -
TEAChart
Simple and intuitive iOS chart library. Contribution graph, clock chart, and bar chart. -
Graphs
Light weight charts view generater for iOS. Written in Swift. -
XJYChart
iOS Chart. Support animation, click, scroll, area highlight. -
EChart
iOS/iPhone/iPad Chart, Graph. Event handling and animation supported. -
FSInteractiveMap
A charting library to visualize and interact with a vector map on iOS. It's like Geochart but for iOS! -
PieCharts
Easy to use and highly customizable pie charts library for iOS -
JYRadarChart
an iOS open source Radar Chart implementation -
ANDLineChartView
ANDLineChartView is easy to use view-based class for displaying animated line chart. -
TWRCharts
An iOS wrapper for ChartJS. Easily build animated charts by leveraging the power of native Obj-C code. -
Dr-Charts
Dr-Charts is a highly customisable, easy to use and interactive chart / graph framework in Objective-C. -
JTChartView
JTChartView is the new lightweight and fully customizable solution to draw a chart. -
DDSpiderChart
Easy to use Spider (Radar) Chart library for iOS written in Swift. -
CoreCharts
Core Charts | Basic Scrollable Chart Library for iOS -
MSBBarChart
MSBBarChart is an easy to use bar chart library for iOS -
CSPieChart
This is pie chart that is very easy to use and customizable design.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Swift LineChart or a related project?
README
Swift LineChart
Usage
var lineChart = LineChart()
lineChart.addLine([3, 4, 9, 11, 13, 15])
Features
- Super simple
- Highly customizable
- Auto scaling
- Touch enabled
- Area below lines
Properties
Both x
and y
properties are of type Coordinate
.
Each can be customized separately and has its own settings for labels, gridlines and axis.
labels
: Labelsgrid
: Gridaxis
: Axis
Labels
can be switched on and off and they can have custom values.
visible
: Bool =true
values
: [String] =[]
Grid
can also be switched on/off, has a custom color and you can specify how many gridlines
you'd like to show.
visible
: Bool =true
count
: CGFloat =10
color
: UIColor =UIColor(red: 238/255.0, green: 238/255.0, blue: 238/255.0, alpha: 1) // #eeeeee
Axis
can be switched on/off, has a property to its color and you can specify how much the axis
is inset from the border of your UIView.
visible
: Bool =true
color
: UIColor =UIColor(red: 96/255.0, green: 125/255.0, blue: 139/255.0, alpha: 1) // 607d8b
inset
: CGFloat =15
Animations can be customized through the Animation
settings.
enabled
: Bool =true
duration
: CFTimeInterval =1
If you'd like to show extra dots at your data points use the Dots
features.
visible
: Bool =true
color
: UIColor =UIColor.whiteColor()
innerRadius
: CGFloat =8
outerRadius
: CGFloat =12
innerRadiusHighlighted
: CGFloat =8
outerRadiusHighlighted
: CGFloat =12
In addition to the above mentioned features you can further customize your chart.
area
: Bool =true
- Fill the area between line and x axislineWidth
: CGFloat =2
- Set the line widthcolors
: [UIColor] =[...]
- Colors for your line charts
Methods
Add line to chart.
lineChart.addLine(data: [CGFloat])
Remove charts, areas and labels but keep axis and grid.
lineChart.clear()
Make whole UIView white again
lineChart.clearAll()
Delegates
didSelectDataPoint()
Touch event happened at or close to data point.
func didSelectDataPoint(x: CGFloat, yValues: [CGFloat]) {
println("\(x) and \(yValues)")
}
Examples
Single line with default settings.
var lineChart = LineChart()
lineChart.addLine([3, 4, 9, 11, 13, 15])
Two lines without grid and dots.
var lineChart = LineChart()
lineChart.area = false
lineChart.x.grid.visible = false
lineChart.x.labels.visible = false
lineChart.y.grid.visible = false
lineChart.y.labels.visible = false
lineChart.dots.visible = false
lineChart.addLine([3, 4, 9, 11, 13, 15])
lineChart.addLine([5, 4, 3, 6, 6, 7])
Show x and y axis
var lineChart = LineChart()
lineChart.area = false
lineChart.x.grid.count = 5
lineChart.y.grid.count = 5
lineChart.addLine([3, 4, 9, 11, 13, 15])
lineChart.addLine([5, 4, 3, 6, 6, 7])
License
MIT
*Note that all licence references and agreements mentioned in the Swift LineChart README section above
are relevant to that project's source code only.