Skip to content

Commit

Permalink
Add missing empty line between Summary and other section
Browse files Browse the repository at this point in the history
  • Loading branch information
kemchenj committed Oct 21, 2018
1 parent 033bb11 commit 15dbb49
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/Charts/Charts/BarChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ open class BarChartView: BarLineChartViewBase, BarChartDataProvider
}

/// Highlights the value at the given x-value in the given DataSet. Provide -1 as the dataSetIndex to undo all highlighting.
///
/// - Parameters:
/// - x:
/// - dataSetIndex:
Expand Down
2 changes: 2 additions & 0 deletions Source/Charts/Charts/ChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ open class ChartViewBase: NSUIView, ChartDataProvider, AnimatorDelegate

/// Highlights any y-value at the given x-value in the given DataSet.
/// Provide -1 as the dataSetIndex to undo all highlighting.
///
/// - Parameters:
/// - x: The x-value to highlight
/// - dataSetIndex: The dataset index to search in
Expand All @@ -469,6 +470,7 @@ open class ChartViewBase: NSUIView, ChartDataProvider, AnimatorDelegate

/// Highlights the value at the given x-value and y-value in the given DataSet.
/// Provide -1 as the dataSetIndex to undo all highlighting.
///
/// - Parameters:
/// - x: The x-value to highlight
/// - y: The y-value to highlight. Supply `NaN` for "any"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ open class BarChartDataEntry: ChartDataEntry
}

/// Splits up the stack-values of the given bar-entry into Range objects.
///
/// - Parameters:
/// - entry:
/// - Returns:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ open class ChartDataSet: ChartBaseDataSet
/// Adds an Entry to the DataSet dynamically.
/// Entries are added to the end of the list.
/// This will also recalculate the current minimum and maximum values of the DataSet and the value-sum.
///
/// - Parameters:
/// - e: the entry to add
/// - Returns: True
Expand All @@ -409,6 +410,7 @@ open class ChartDataSet: ChartBaseDataSet
/// Adds an Entry to the DataSet dynamically.
/// Entries are added to their appropriate index respective to it's x-index.
/// This will also recalculate the current minimum and maximum values of the DataSet and the value-sum.
///
/// - Parameters:
/// - e: the entry to add
/// - Returns: True
Expand Down Expand Up @@ -436,6 +438,7 @@ open class ChartDataSet: ChartBaseDataSet

/// Removes an Entry from the DataSet dynamically.
/// This will also recalculate the current minimum and maximum values of the DataSet and the value-sum.
///
/// - Parameters:
/// - entry: the entry to remove
/// - Returns: `true` if the entry was removed successfully, else if the entry does not exist
Expand Down

0 comments on commit 15dbb49

Please sign in to comment.