Nenhuma descrição

Daniel Cohen Gindi 5d9c81ab7f 3.0.1 release 8 anos atrás
Assets 96ec5b85b9 New better quality feature graphic 9 anos atrás
Charts.xcodeproj 9a3f389de2 Added IndexAxisValueFormatter, to allow for easy x-axis labels like Charts 2.0 8 anos atrás
ChartsDemo b91b70adc2 Removed width constraint on slider-text-x and slider-text-y, so width 8 anos atrás
ChartsDemo-OSX f4a5006ce6 Avoid depreciated properties in demo 9 anos atrás
Source 5d9c81ab7f 3.0.1 release 8 anos atrás
Tests c661973169 Fixed last label of line chart not rendering (Closes #1671, #1323) 8 anos atrás
scripts 967305fe64 fix issues with charts needing carthage 9 anos atrás
.gitignore 9dedd17712 Ignoring .DS_Store files 9 anos atrás
.swift-version cfb79ae659 fix cocoapod setup being broken 9 anos atrás
.travis.yml bd13d85238 add ruby version back 8 anos atrás
CHANGELOG.md 5d9c81ab7f 3.0.1 release 8 anos atrás
CONTRIBUTING.md 21079ab164 Update CONTRIBUTING.md 9 anos atrás
Cartfile 31a33a0369 update cartfile 9 anos atrás
Cartfile.private 31a33a0369 update cartfile 9 anos atrás
Cartfile.resolved 31a33a0369 update cartfile 9 anos atrás
Carthage.xcconfig 00c09aa33e re-add Carthage config since search paths seem to not work from xcode 9 anos atrás
Charts.podspec 5d9c81ab7f 3.0.1 release 8 anos atrás
Gemfile b8bd71cd11 update cocoapods 8 anos atrás
Gemfile.lock b8bd71cd11 update cocoapods 8 anos atrás
LICENSE 72652ef3ef Initial commit 10 anos atrás
README.md 5d9c81ab7f 3.0.1 release 8 anos atrás
Rakefile 28f685d82a add rake task to update podspec 8 anos atrás

README.md

Version 3.0.1, synced to MPAndroidChart #345b4bc

alt tag Supported Platforms Releases Latest pod release Carthage compatible Build Status codecov

Just a heads up: Charts 3.0 has some breaking changes. Please read the release/migration notes.

  • Xcode 8.0 / Swift 3.0 (For Swift 2.3 support please use Charts 2.3.0)
  • iOS >= 8.0 (Use as an Embedded Framework)
  • tvOS >= 9.0
  • macOS >= 10.11

Okay so there's this beautiful library called MPAndroidChart by Philipp Jahoda which has become very popular amongst Android developers, and in the meanwhile there's no decent charting solution for iOS.

I've chosen to write it in Swift as it can be highly optimized by the compiler, and can be used in both Swift and ObjC project. The demo project is written in ObjC to demonstrate how it works.

An amazing feature of this library now, for Android, iOS, tvOS and macOS, is the time it saves you when developing for both platforms, as the learning curve is singleton- it happens only once, and the code stays very similar so developers don't have to go around and re-invent the app to produce the same output with a different library. (And that's not even considering the fact that there's not really another good choice out there currently...)

Having trouble running the demo?

  • ChartsDemo/ChartsDemo.xcodeproj is the demo project for iOS/tvOS
  • ChartsDemo-OSX/ChartsDemo-OSX.xcodeproj is the demo project for macOS
  • Make sure you are running a supported version of Xcode.
    • Usually it is specified here a few lines above.
    • In most cases it will be the latest Xcode version.
  • Make sure that your project supports Swift 3.0
  • Run carthage checkout in the project folder, to fetch dependencies (i.e Realm).
    • Realm is not required for using Charts - it is just a feature. But as the demo demonstrates Realm - you have to have it when running the demo.
    • If you don't have Carthage - you can get it here.

Usage

In order to correctly compile:

  1. Drag the Charts.xcodeproj to your project
  2. Go to your target's settings, hit the "+" under the "Embedded Binaries" section, and select the Charts.framework
  3. @import Charts
  4. When using Swift in an ObjC project:
    • You need to import your Bridging Header. Usually it is "YourProject-Swift.h", so in ChartsDemo it's "ChartsDemo-Swift.h". Do not try to actually include "ChartsDemo-Swift.h" in your project :-)
    • Under "Build Options", mark "Embedded Content Contains Swift Code"
  5. When using Realm.io:
    • Note that the Realm framework is not linked with Charts - it is only there for optional bindings. Which means that you need to have the framework in your project, and in a compatible version to whatever is compiled with Charts. We will do our best to always compile against the latest version.

3rd party tutorials

Troubleshooting

Can't compile?

  • Please note the difference between installing a compiled framework from CocoaPods or Carthage, and copying the source code.
  • If you are using Realm, please also #import <ChartsRealm/ChartsRealm.h>
  • If you are compiling the source code and want to use Realm, please make sure to include the code from ChartsRealm project.
  • Please read the Usage section again.
  • Search in the issues
  • Try to politely ask in the issues section

Other problems / feature requests

  • Search in the issues
  • Try to politely ask in the issues section

CocoaPods Install

Add pod 'Charts' to your Podfile. "Charts" is the name of the library.

For Realm support you can specify the subspec in your Podfile as follows:

pod 'Charts/Realm'

Note: pod 'ios-charts' is not the correct library, and refers to a different project by someone else.

Carthage Install

Charts now include Carthage prebuilt binaries.

github "danielgindi/Charts" == 3.0.1
github "danielgindi/Charts" ~> 3.0.1

In order to build the binaries for a new release, use carthage build --no-skip-current && carthage archive Charts && carthage archive ChartsRealm.

3rd party bindings

Xamarin (by @Flash3001): iOS - GitHub/NuGet. Android - GitHub/NuGet.

Help

If you like what you see here, and want to support the work being done in this repository, you could:

  • Contribute code, issues and pull requests
  • Let people know this library exists (:fire: spread the word :fire:)
  • Donate (You can buy me a beer, or you can buy me dinner :-)

Note: The author of MPAndroidChart is the reason that this library exists, and is accepting donations on his page. He deserves them!

Questions & Issues

If you are having questions or problems, you should:

  • Make sure you are using the latest version of the library. Check the release-section.
  • Study the Android version's Documentation-Wiki
  • Study the (Still incomplete Doc-Percent) Pod-Documentation
  • Search or open questions on stackoverflow with the ios-charts tag
  • Search known issues for your problem (open and closed)
  • Create new issues (please :fire: search known issues before :fire:, do not create duplicate issues)

Features

Core features:

  • 8 different chart types
  • Scaling on both axes (with touch-gesture, axes separately or pinch-zoom)
  • Dragging / Panning (with touch-gesture)
  • Combined-Charts (line-, bar-, scatter-, candle-stick-, bubble-)
  • Dual (separate) Axes
  • Customizable Axes (both x- and y-axis)
  • Highlighting values (with customizable popup-views)
  • Save chart to camera-roll / export to PNG/JPEG
  • Predefined color templates
  • Legends (generated automatically, customizable)
  • Animations (build up animations, on both x- and y-axis)
  • Limit lines (providing additional information, maximums, ...)
  • Fully customizable (paints, typefaces, legends, colors, background, gestures, dashed lines, ...)
  • Plotting data directly from Realm.io mobile database

Chart types:

Screenshots are currently taken from the original repository, as they render exactly the same :-)

  • LineChart (with legend, simple design) alt tag
  • LineChart (with legend, simple design) alt tag

  • LineChart (cubic lines) alt tag

  • LineChart (gradient fill) alt tag

  • Combined-Chart (bar- and linechart in this case) alt tag

  • BarChart (with legend, simple design)

alt tag

  • BarChart (grouped DataSets)

alt tag

  • Horizontal-BarChart

alt tag

  • PieChart (with selection, ...)

alt tag

  • ScatterChart (with squares, triangles, circles, ... and more)

alt tag

  • CandleStickChart (for financial data)

alt tag

  • BubbleChart (area covered by bubbles indicates the value)

alt tag

  • RadarChart (spider web chart)

alt tag

Documentation

Currently there's no need for documentation for the iOS/tvOS/macOS version, as the API is 95% the same as on Android.
You can read the official MPAndroidChart documentation here: Wiki

Or you can see the ChartsDemo project and learn the how-tos from it.

Special Thanks

Goes to @liuxuan30, @petester42 and @AlBirdie for new features, bugfixes, and lots and lots of involvement in our open-sourced community! You guys are a huge help to all of those coming here with questions and issues, and I couldn't respond to all of those without you.

License

Copyright 2016 Daniel Cohen Gindi & Philipp Jahoda

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.