Skip to content
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 document to latest format #3621

Merged
merged 10 commits into from
Nov 7, 2018
Prev Previous commit
Next Next commit
Remove duplicated section
kemchenj committed Sep 23, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 033bb119aa3a95c2250adf4ac3839f79e49d22ad
1 change: 0 additions & 1 deletion Source/Charts/Highlight/BarHighlighter.swift
Original file line number Diff line number Diff line change
@@ -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
{
3 changes: 0 additions & 3 deletions Source/Charts/Highlight/ChartHighlighter.swift
Original file line number Diff line number Diff line change
@@ -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
{
@@ -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?
{
@@ -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]
1 change: 0 additions & 1 deletion Source/Charts/Highlight/IHighlighter.swift
Original file line number Diff line number Diff line change
@@ -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?
}