Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ use_frameworks!
def shared_pods
pod 'ActionSheetPicker-3.0', '~> 2.3.0'
pod 'ChameleonFramework', '~> 2.1.0'
pod 'Charts', '~> 4.1.0'
pod 'DGCharts', '~> 5.1.0'
pod 'Crashlytics', '~> 3.12.0'
pod 'Fabric'
pod 'IP-UIKit-Wisdom', '~> 0.0.10'
pod 'KVOController', '~> 1.2.0'
pod 'MZTimerLabel', '~> 0.5.4'
pod 'PureLayout', '~> 3.1.4'
pod 'SVProgressHUD', '~> 2.2.5'
pod 'SVProgressHUD', :git => 'https://github.com/mitsuke2020/SVProgressHUD.git'
pod 'UICircularProgressRing'
pod 'XMLDictionary', '~> 1.4.1'
pod 'Realm', '~> 4.3.2'
pod 'Realm', '~> 20.0.3'
pod 'RealmSwift'
pod 'AEXML'
pod 'RxSwift', '~> 6.2.0'
pod 'RxCocoa', '~> 6.2.0'
pod 'RxSwift', '~> 6.9.0'
pod 'RxCocoa', '~> 6.9.0'
pod 'Introspect'
pod 'CocoaLumberjack/Swift'
pod 'DeviceGuru'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2022 SiliconLabs. All rights reserved.
//

import Charts
import DGCharts

class RSSIGraphLineChartView: LineChartView {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
import Charts
import DGCharts

class RSSIGraphXAxisRenderer: XAxisRenderer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
import Charts
import DGCharts

class RSSIGraphYAxisRenderer : YAxisRenderer {
private let arrowWidth = CGFloat(6)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import UIKit
import Charts
import DGCharts
import RxSwift
import RxRelay

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import UIKit
import ActionSheetPicker_3_0
import ChameleonFramework
import Charts
import DGCharts
import SVProgressHUD

fileprivate struct Constants {
Expand Down Expand Up @@ -627,7 +627,7 @@ extension SILRangeTestAppViewController {
}

private class CubicLineSampleFillFormatter: FillFormatter {
func getFillLinePosition(dataSet: Charts.LineChartDataSetProtocol, dataProvider: Charts.LineChartDataProvider) -> CGFloat {
func getFillLinePosition(dataSet: DGCharts.LineChartDataSetProtocol, dataProvider: DGCharts.LineChartDataProvider) -> CGFloat {
return -100
}
}
Expand Down