Skip to content

Commit

Permalink
Merge pull request #7 from fishbrain/master
Browse files Browse the repository at this point in the history
Merge Master into 5.0.0
  • Loading branch information
joeboyscout04 authored Dec 12, 2023
2 parents 0a229f8 + aab1a24 commit d36d07c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Source/Charts/Charts/BarLineChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ open class BarLineChartViewBase: ChartViewBase, BarLineScatterCandleBubbleChartD
private var _scaleXEnabled = true
private var _scaleYEnabled = true

@objc open var isDragging: Bool {
return _isDragging
}

@objc open var isDecelerating: Bool {
return _decelerationDisplayLink != nil
}

@objc open var isScaling: Bool {
return _isScaling
}

/// the color for the background of the chart-drawing area (everything behind the grid lines).
@objc open var gridBackgroundColor = NSUIColor(red: 240/255.0, green: 240/255.0, blue: 240/255.0, alpha: 1.0)

Expand Down

0 comments on commit d36d07c

Please sign in to comment.