-
-
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
Update ChartDataSet.swift #4861
Conversation
Missing method.
Nice work |
Thanks for the fix. Any solution to this? The solution was actually described in "Fixes for Swift 5.7 compiler" topic: add "as ChartData" to the lines that gives the error: candleData as ChartData |
Thanks for the contribution! |
Can we please have this one fix back ported to 3.x ? |
We will not patch older versions of the library for newer Xcode versions. Your best bet is to update or fork the library. |
Can you change the minimum version to 10.0 |
I believe there is a technical reason behind it so we cannot. Is there a reason you still need to support such an old iOS version? The market share seems to indicate very low to 0 usage of this version https://developer.apple.com/support/app-store/ |
refer from ChartsOrg#4861
@linxiangyang112 we use 10.3 and found a fix in the conversation here: |
Hi, did anyone know about this change, I believe that this code works before without this update. |
Missing method.
Xcode 14 Beta 3 issues.
Unavailable instance method 'replaceSubrange(_:with:)' was used to satisfy a requirement of protocol 'RangeReplaceableCollection'
Issue
Xcode 14 Beta 3 issues.
Unavailable instance method 'replaceSubrange(_:with:)' was used to satisfy a requirement of protocol 'RangeReplaceableCollection'
Goals ⚽
Instance method 'replaceSubrange(_:with:)' need to adding.
Implementation Details 🚧
Added unavailable instance method 'replaceSubrange(_:with:)'.
Testing Details 🔍