All Projects → micheltlutz → MLLineChart

micheltlutz / MLLineChart

Licence: MIT license
A simple Line Chart Lib

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to MLLineChart

Swiftlyext
SwiftlyExt is a collection of useful extensions for Swift 3 standard classes and types 🚀
Stars: ✭ 31 (+10.71%)
Mutual labels:  swift-package-manager, swift-framework
Swift
🥇Swift基础知识大全,🚀Swift学习从简单到复杂,不断地完善与更新, 欢迎Star❤️,欢迎Fork, iOS开发者交流:①群:446310206 ②群:426087546
Stars: ✭ 1,377 (+4817.86%)
Mutual labels:  swift-package-manager, swift-framework
Framelayoutkit
FrameLayoutKit is a super fast and easy to use autolayout kit
Stars: ✭ 53 (+89.29%)
Mutual labels:  swift-package-manager, swift-framework
tapestry
Generate and maintain Swift frameworks with support for Cocoapods, Carthage and SPM
Stars: ✭ 64 (+128.57%)
Mutual labels:  swift-package-manager, swift-framework
HCLineChartView
HCLineChartView is a beautiful iOS library for drawing line charts. It is highly customizable and easy to use.
Stars: ✭ 22 (-21.43%)
Mutual labels:  charts, chart-library
EKAstrologyCalc
Astrology Calculator calculates moon's rise/set times, moon Age, moon phases and Zodiac Sign for location and time
Stars: ✭ 31 (+10.71%)
Mutual labels:  swift-package-manager, swift-framework
Markdowngenerator
Swift library to programmatically generate Markdown output and files
Stars: ✭ 76 (+171.43%)
Mutual labels:  swift-package-manager, swift-framework
Loadingshimmer
An easy way to add a shimmering effect to any view with just one line of code. It is useful as an unobtrusive loading indicator.
Stars: ✭ 1,180 (+4114.29%)
Mutual labels:  swift-package-manager, swift-framework
L10n Swift
Localization of the application with ability to change language "on the fly" and support for plural form in any language.
Stars: ✭ 177 (+532.14%)
Mutual labels:  swift-package-manager, swift-framework
Simplycoreaudio
A Swift framework that aims to make Core Audio use less tedious in macOS
Stars: ✭ 167 (+496.43%)
Mutual labels:  swift-package-manager, swift-framework
YMFF
Feature management made easy.
Stars: ✭ 26 (-7.14%)
Mutual labels:  swift-package-manager, swift-framework
Anychart Android
AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
Stars: ✭ 1,762 (+6192.86%)
Mutual labels:  charts, chart-library
PagedLists
Paginated UITableView and UICollectionViews for iOS.
Stars: ✭ 69 (+146.43%)
Mutual labels:  swift-package-manager, pod
Taniwhatextfield
My first cocoapod framework
Stars: ✭ 26 (-7.14%)
Mutual labels:  swift-package-manager, swift-framework
Badgehub
A way to quickly add a notification badge icon to any view. Make any view of a full-fledged animated notification center.
Stars: ✭ 592 (+2014.29%)
Mutual labels:  swift-framework, pod
Netclient Ios
Versatile HTTP Networking in Swift
Stars: ✭ 117 (+317.86%)
Mutual labels:  swift-package-manager, swift-framework
vue-d3-charts
D3 charts for Vue
Stars: ✭ 66 (+135.71%)
Mutual labels:  charts, chart-library
extensions-kit
📦 Collection of Swift+Apple Frameworks extensions for speeding up software development [iOS & iPadOS].
Stars: ✭ 71 (+153.57%)
Mutual labels:  swift-package-manager, swift-framework
aescryptable
AES encryption/decryption with random iv. Swift 5 and up.
Stars: ✭ 29 (+3.57%)
Mutual labels:  swift-package-manager
nef-editor-client
📱Client-side code for the nef editor app
Stars: ✭ 20 (-28.57%)
Mutual labels:  swift-package-manager

MLLineChart

 

Swift 5.0 Platforms License Swift Package Manager Carthage compatible CocoaPods compatible Travis

A Simple Line Chart Library

Requirements

  • iOS 10.0+ / tvOS 9.0+
  • Xcode 10.2.1+

Installation

CocoaPods

Add the following line to your Podfile:

pod "MLLineChart"

$ pod install

Dependency Managers

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate MLLineChart into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

pod 'MLLineChart', '~> 2.0.5'

Then, run the following command:

$ pod install
Carthage

Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate MLLineChart into your Xcode project using Carthage, specify it in your Cartfile:

github "micheltlutz/MLLineChart" ~> 2.0.5

Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate MLLineChart into your project manually.

Git Submodules

  • Open up Terminal, cd into your top-level project directory, and run the following command "if" your project is not initialized as a git repository:
$ git init
  • Add MLLineChart as a git submodule by running the following command:
$ git submodule add https://github.com/micheltlutz/MLLineChart.git
$ git submodule update --init --recursive
  • Open the new MLLineChart folder, and drag the MLLineChart.xcodeproj into the Project Navigator of your application's Xcode project.

    It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.

  • Select the MLLineChart.xcodeproj in the Project Navigator and verify the deployment target matches that of your application target.

  • Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.

  • In the tab bar at the top of that window, open the "General" panel.

  • Click on the + button under the "Embedded Binaries" section.

  • You will see two different MLLineChart.xcodeproj folders each with two different versions of the MLLineChart.framework nested inside a Products folder.

    It does not matter which Products folder you choose from.

  • Select the MLLineChart.framework.

  • And that's it!

The MLLineChart.framework is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.

Embedded Binaries

  • Download the latest release from https://github.com/micheltlutz/MLLineChart/releases
  • Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
  • In the tab bar at the top of that window, open the "General" panel.
  • Click on the + button under the "Embedded Binaries" section.
  • Add the downloaded MLLineChart.framework.
  • And that's it!

Usage

import MLLineChart

class ViewController: UIViewController {
	 private var lineChart: MLLineChart!
    private var dataEntries: [MLPointEntry] = []
    var widthChart = CGFloat(320)
    var heightChart = CGFloat(275)
    
    override func viewDidLoad() {
        super.viewDidLoad()
        makeData()
        setupChart()
    }

    private func makeData() {
        dataEntries.append(MLPointEntry(value: 5, label: "1", color: .gray))
        dataEntries.append(MLPointEntry(value: 6, label: "2", color: .green))
        dataEntries.append(MLPointEntry(value: 4, label: "3", color: .blue))
    }

    private func setupChart() {
        lineChart = MLLineChart(frame: CGRect(x: 0, y: 0, width: widthChart, height: heightChart))
        lineChart.translatesAutoresizingMaskIntoConstraints = false
        lineChart.dataEntries = dataEntries
        lineChart.lineColor = .gray
        lineChart.lineWidth = 2
        lineChart.showShadows = true
        lineChart.showAxisLine = true
        lineChart.gradienLinesColors = [UIColor.gray.cgColor, UIColor.green.cgColor, UIColor.blue.cgColor]
        lineChart.configLabelsBottom = MLLabelConfig(color: .white,
                                                           backgroundColor: .gray,
                                                           rounded: true,
                                                           font: UIFont.systemFont(ofSize: 11),
                                                           width: 16, height: 16, fontSize: 11)
    }    
    /// Cntinue your code
    
}

Docs

MLLineChart Docs (- documented)

Demo App

Using MLLineChartDemo Target on this project

     

Contributing

Issues and pull requests are welcome!

Todo

  • Migrate to Swift 4.2
  • Support again to line without curve
  • 100% documented

Author

Michel Anderson Lutz Teixeira @michel_lutz

Inspired on nhatminh12369/LineChart

My Site

Contributions

License

MLLineChart is released under the MIT license. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].