Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ChartsOrg/Charts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 623ade5aa93eb1449723d797b92cfcd7404c5b06
Choose a base ref
..
head repository: ChartsOrg/Charts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1e41a5b50a48eb76e0991678c88317013ea3eeec
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +4 −4 Charts/Classes/Charts/BarLineChartViewBase.swift
8 changes: 4 additions & 4 deletions Charts/Classes/Charts/BarLineChartViewBase.swift
Original file line number Diff line number Diff line change
@@ -1187,7 +1187,7 @@ public class BarLineChartViewBase: ChartViewBase, BarLineScatterCandleBubbleChar

/// Sets the size of the area (range on the x-axis) that should be maximum visible at once (no further zomming out allowed).
///
/// If you call this method, make sure you feed chart data, otherwise it won't work
/// If you call this method, chart must have data or it has no effect
///
/// If this is e.g. set to 10, no more than 10 values on the x-axis can be viewed at once without scrolling.
public func setVisibleXRangeMaximum(maxXRange: CGFloat)
@@ -1198,7 +1198,7 @@ public class BarLineChartViewBase: ChartViewBase, BarLineScatterCandleBubbleChar

/// Sets the size of the area (range on the x-axis) that should be minimum visible at once (no further zooming in allowed).
///
/// If you call this method, make sure you feed chart data, otherwise it won't work
/// If you call this method, chart must have data or it has no effect
///
/// If this is e.g. set to 10, no less than 10 values on the x-axis can be viewed at once without scrolling.
public func setVisibleXRangeMinimum(minXRange: CGFloat)
@@ -1209,7 +1209,7 @@ public class BarLineChartViewBase: ChartViewBase, BarLineScatterCandleBubbleChar

/// Limits the maximum and minimum value count that can be visible by pinching and zooming.
///
/// If you call this method, make sure you feed chart data, otherwise it won't work
/// If you call this method, chart must have data or it has no effect
///
/// e.g. minRange=10, maxRange=100 no less than 10 values and no more that 100 values can be viewed
/// at once without scrolling
@@ -1222,7 +1222,7 @@ public class BarLineChartViewBase: ChartViewBase, BarLineScatterCandleBubbleChar

/// Sets the size of the area (range on the y-axis) that should be maximum visible at once.
///
/// If you call this method, make sure you feed chart data, otherwise it won't work
/// If you call this method, chart must have data or it has no effect
///
/// - parameter yRange:
/// - parameter axis: - the axis for which this limit should apply