Skip to content

Commit

Permalink
Remove duplicated section
Browse files Browse the repository at this point in the history
  • Loading branch information
kemchenj committed Sep 22, 2018
1 parent 06c7323 commit cc1dbcd
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Source/Charts/Highlight/BarHighlighter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ open class BarHighlighter: ChartHighlighter
/// - Parameters:
/// - entry:
/// - value:
/// - Returns:
/// - Returns: The index of the closest value inside the values array / ranges (stacked barchart) to the value given as a parameter.
@objc open func getClosestStackIndex(ranges: [Range]?, value: Double) -> Int
{
Expand Down
3 changes: 0 additions & 3 deletions Source/Charts/Highlight/ChartHighlighter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ open class ChartHighlighter : NSObject, IHighlighter

/// - Parameters:
/// - x:
/// - Returns:
/// - Returns: The corresponding x-pos for a given touch-position in pixels.
@objc open func getValsForTouch(x: CGFloat, y: CGFloat) -> CGPoint
{
Expand All @@ -44,7 +43,6 @@ open class ChartHighlighter : NSObject, IHighlighter
/// - xValue:
/// - x:
/// - y:
/// - Returns:
/// - Returns: The corresponding ChartHighlight for a given x-value and xy-touch position in pixels.
@objc open func getHighlight(xValue xVal: Double, x: CGFloat, y: CGFloat) -> Highlight?
{
Expand All @@ -67,7 +65,6 @@ open class ChartHighlighter : NSObject, IHighlighter
/// - xValue: the transformed x-value of the x-touch position
/// - x: touch position
/// - y: touch position
/// - Returns:
/// - Returns: A list of Highlight objects representing the entries closest to the given xVal.
/// The returned list contains two objects per DataSet (closest rounding up, closest rounding down).
@objc open func getHighlights(xValue: Double, x: CGFloat, y: CGFloat) -> [Highlight]
Expand Down
1 change: 0 additions & 1 deletion Source/Charts/Highlight/IHighlighter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public protocol IHighlighter: class
/// - Parameters:
/// - x:
/// - y:
/// - Returns:
/// - Returns: A Highlight object corresponding to the given x- and y- touch positions in pixels.
func getHighlight(x: CGFloat, y: CGFloat) -> Highlight?
}

0 comments on commit cc1dbcd

Please sign in to comment.