You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to take screen shot bigger (or smaller) than screen
Move locationForPointAtIndex to datasource
Fix minor doc issues.
Fixed case where label is partially onscreen, but point is not.
Don't allow zooming infinitely small
@param appIsInBackground If your app is currently in the background state, pass YES to \p appIsInBackground. Otherwise, when your app is in the foreground you should take advantage of more efficient APIs by passing NO to \p appIsInBackground.
/** The horizontal position for a point at the given index. It corresponds to the X-axis value of the Graph.
423
+
@discussion if this is not implemented, points will be evenly spaced along x-Axis. If you sometimes want evenly spaced and sometimes not, just return index when you want even spacing.
424
+
@param graph The graph object requesting the point value.
425
+
@param index The index from left to right of a given point (X-axis). The first value for the index is 0.
/** The total number of X-axis labels on the line graph.
623
628
@discussion Calculates the total wdith of the graph and evenly spaces the labels based on the graph width. If this and lineGraph:locationForPointAtIndex: are implemented, labels may diverge from data points
624
629
@param graph The graph object which is requesting the number of labels.
@discussion Calculates the total wdith of the graph and evenly spaces the labels based on the graph width. Only relevant if lineGraph:locationForPointAtIndex: is implemented. If implemented, it diverges labels from data points
630
635
@param oldScale The current scale level. 1.0 = autosized to fit all points. 2.0 would show half the chart
631
636
@param newScale New scale level requested by pinchZoom.
632
-
@param displayMinXValue The smallest datapoint that will be included in the chart (either index or value, depending on VariableXAxis).
637
+
@param displayMinXValue The smallest datapoint that will be included in the chart (either index or value, depending on whether locationForPointAtIndex is implemented).
633
638
@param displayMaxXValue The largest datapoint that will be included in the chart.
634
-
@return YES if zoom is ok; No if zoom is prevented. */
639
+
@return YES if pan/zoom is ok; No if pan/zoom is prevented. */
0 commit comments