-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating 4.0.0 with latest changes in master #3130
Commits on Nov 2, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 37c8a77 - Browse repository at this point
Copy the full SHA 37c8a77View commit details
Commits on Nov 14, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 69d12af - Browse repository at this point
Copy the full SHA 69d12afView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1b4fcf - Browse repository at this point
Copy the full SHA d1b4fcfView commit details
Commits on Nov 15, 2017
-
Configuration menu - View commit details
-
Copy full SHA for cd0b984 - Browse repository at this point
Copy the full SHA cd0b984View commit details -
Configuration menu - View commit details
-
Copy full SHA for d864fb5 - Browse repository at this point
Copy the full SHA d864fb5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 48386a3 - Browse repository at this point
Copy the full SHA 48386a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40bb001 - Browse repository at this point
Copy the full SHA 40bb001View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ea3c20 - Browse repository at this point
Copy the full SHA 9ea3c20View commit details
Commits on Nov 23, 2017
-
Removed @objc from internal properties
Since the framework is entirely Swift, internal properties do not need to be marked as @objc
Configuration menu - View commit details
-
Copy full SHA for 6869d85 - Browse repository at this point
Copy the full SHA 6869d85View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7a1c04 - Browse repository at this point
Copy the full SHA c7a1c04View commit details
Commits on Nov 24, 2017
-
* `Animator` is now non-optional in `Renderer` types * Fixed merge with master
Configuration menu - View commit details
-
Copy full SHA for 122013e - Browse repository at this point
Copy the full SHA 122013eView commit details
Commits on Nov 27, 2017
-
View port handler nonnil (#2980)
* `ViewPortHandler` is now non-optional in all, if not most cases * Removed unnecessary `init()`s from `ViewPortHandler` and related * `Renderer` now has a constant `ViewPortHandler` * Pulled latest master * Fixes for PR review Removed extraneous comment Removed extra whitespace * Removed extra new lines
Configuration menu - View commit details
-
Copy full SHA for fb02977 - Browse repository at this point
Copy the full SHA fb02977View commit details -
ChartRenderer
's must be initialized with a chart (#2982)* `ViewPortHandler` is now non-optional in all, if not most cases * Removed unnecessary `init()`s from `ViewPortHandler` and related * `Renderer` now has a constant `ViewPortHandler` * `ChartRenderer`'s must be initialized with a chart * CombinedChartRenderer gets the same treatment * Pulled latest master * Pulled latest master * Removed unnecessary comment * Removed unnecessary whitespace
Configuration menu - View commit details
-
Copy full SHA for 0f74a25 - Browse repository at this point
Copy the full SHA 0f74a25View commit details
Commits on Dec 5, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 19da2c0 - Browse repository at this point
Copy the full SHA 19da2c0View commit details -
Merge pull request #3038 from jjatie/internal-drop-objc
Removed @objc from internal properties
Configuration menu - View commit details
-
Copy full SHA for b87d04e - Browse repository at this point
Copy the full SHA b87d04eView commit details -
Merge pull request #2949 from maciejtrybilo/master
Fix turning off drag in X and Y axes separately.
Configuration menu - View commit details
-
Copy full SHA for 60829b3 - Browse repository at this point
Copy the full SHA 60829b3View commit details
Commits on Dec 8, 2017
-
fileprivate -> private (#3042)
almsot all cases of fileprivate were meant to be private. If there is a need to use fileprivate in the future, it should be considered then. Not now.
Configuration menu - View commit details
-
Copy full SHA for 8c9d5f3 - Browse repository at this point
Copy the full SHA 8c9d5f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6faf53 - Browse repository at this point
Copy the full SHA c6faf53View commit details -
Merge pull request #3078 from liuxuan30/2772
for #2745. chart should be weak.
Configuration menu - View commit details
-
Copy full SHA for 2ff5cb5 - Browse repository at this point
Copy the full SHA 2ff5cb5View commit details
Commits on Dec 9, 2017
-
Fix a bug may cause infinite loop. (#3073)
* Fix a bug may cause infinite loop. * Update BarLineChartViewBase.swift put nil check first seems better
Configuration menu - View commit details
-
Copy full SHA for 6fee51c - Browse repository at this point
Copy the full SHA 6fee51cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d321093 - Browse repository at this point
Copy the full SHA d321093View commit details
Commits on Dec 11, 2017
-
Replaced
ChartUtils.Math
in favour of an extension on `FloatingPoin……t` (#2993) * Replaced `ChartUtils.Math` in favour of an extension on `FloatingPoint` Increases readability, and in many cases removes a set of parentheses to ensure order of operations. * Moved `normalizedAngled` into `FloatingPoint` extension Improves readability * Fix after merge * Pulled latest master * Renamed deg2rad/rad2deg
Configuration menu - View commit details
-
Copy full SHA for 159e0f7 - Browse repository at this point
Copy the full SHA 159e0f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ab6706 - Browse repository at this point
Copy the full SHA 3ab6706View commit details
Commits on Dec 14, 2017
-
The backing var is not necessary. (#3000)
* The backing far is not necessary. Appears to have been a way to expose the var to obj-c like so many others in the framework. * Corrections for PR * Pulled master * count -> endIndex where appropriate * fix a typo ifnot -> if not Just find a typo ifnot -> if not * Removed redundant notifyDataSetChanged()
Configuration menu - View commit details
-
Copy full SHA for d4a3d4f - Browse repository at this point
Copy the full SHA d4a3d4fView commit details -
revert animationUpdate() and animationEnd() not trigger crash if subclass does nothing
Configuration menu - View commit details
-
Copy full SHA for f9a1456 - Browse repository at this point
Copy the full SHA f9a1456View commit details -
Merge pull request #3098 from danielgindi/3061
for #3061 fix animation crash
Configuration menu - View commit details
-
Copy full SHA for f1acb2a - Browse repository at this point
Copy the full SHA f1acb2aView commit details
Commits on Dec 18, 2017
-
Removed methods and properties deprecated in 1.0 (#2996)
* Removed methods and properties deprecated in 1.0 * Removed old bridging functions These were only being used by deprecated methods. * Pulled latest master
Configuration menu - View commit details
-
Copy full SHA for ecdd295 - Browse repository at this point
Copy the full SHA ecdd295View commit details
Commits on Dec 19, 2017
-
Makes ChartsDemo compiling again (#3117)
* Use example drawEntryLabelsEnabled instead of removed drawSliceTextEnabled * Use in example ILineChartDataSet.mode property instead of removed drawSteppedEnabled one
Configuration menu - View commit details
-
Copy full SHA for 5639818 - Browse repository at this point
Copy the full SHA 5639818View commit details
Commits on Dec 24, 2017
-
Merge pull request #2998 from jjatie/minor-formatter-logic
Minor changes to Formatter logic
Configuration menu - View commit details
-
Copy full SHA for 8b18e76 - Browse repository at this point
Copy the full SHA 8b18e76View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ef8aa1 - Browse repository at this point
Copy the full SHA 0ef8aa1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 428843f - Browse repository at this point
Copy the full SHA 428843fView commit details