![]() |
Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
|
Pie chart delegate. More...
#import <CPTPieChart.h>
Inheritance diagram for <CPTPieChartDelegate>:
Collaboration diagram for <CPTPieChartDelegate>:Public Instance Methods | |
Slice Selection | |
| (void) | - pieChart:sliceWasSelectedAtRecordIndex: |
| (Optional) Informs the delegate that a pie slice received both the touch down and up events. More... | |
| (void) | - pieChart:sliceWasSelectedAtRecordIndex:withEvent: |
| (Optional) Informs the delegate that a pie slice received both the touch down and up events. More... | |
| (void) | - pieChart:sliceTouchDownAtRecordIndex: |
| (Optional) Informs the delegate that a pie slice touch started. More... | |
| (void) | - pieChart:sliceTouchDownAtRecordIndex:withEvent: |
| (Optional) Informs the delegate that a pie slice touch started. More... | |
| (void) | - pieChart:sliceTouchUpAtRecordIndex: |
| (Optional) Informs the delegate that a pie slice touch ended. More... | |
| (void) | - pieChart:sliceTouchUpAtRecordIndex:withEvent: |
| (Optional) Informs the delegate that a pie slice touch ended. More... | |
Public Instance Methods inherited from <CPTPlotDelegate> | |
| (void) | - plot:dataLabelWasSelectedAtRecordIndex: |
| (Optional) Informs the delegate that a data label received both the touch down and up events. More... | |
| (void) | - plot:dataLabelWasSelectedAtRecordIndex:withEvent: |
| (Optional) Informs the delegate that a data label received both the touch down and up events. More... | |
| (void) | - plot:dataLabelTouchDownAtRecordIndex: |
| (Optional) Informs the delegate that a data label touch started. More... | |
| (void) | - plot:dataLabelTouchDownAtRecordIndex:withEvent: |
| (Optional) Informs the delegate that a data label touch started. More... | |
| (void) | - plot:dataLabelTouchUpAtRecordIndex: |
| (Optional) Informs the delegate that a data label touch ended. More... | |
| (void) | - plot:dataLabelTouchUpAtRecordIndex:withEvent: |
| (Optional) Informs the delegate that a data label touch ended. More... | |
| (void) | - didFinishDrawing: |
| (Optional) Informs the delegate that plot drawing is finished. More... | |
Public Instance Methods inherited from <NSObject> | |
| (NSString *) | - description |
| (NSUInteger) | - hash |
| (BOOL) | - isEqual: |
Pie chart delegate.
| - (void) pieChart: | (nonnull CPTPieChart *) | plot | |
| sliceTouchDownAtRecordIndex: | (NSUInteger) | idx | |
(Optional) Informs the delegate that a pie slice touch started.
| plot | The pie chart. |
| idx | The index of the touched pie slice. |
| - (void) pieChart: | (nonnull CPTPieChart *) | plot | |
| sliceTouchDownAtRecordIndex: | (NSUInteger) | idx | |
| withEvent: | (nonnull CPTNativeEvent *) | event | |
(Optional) Informs the delegate that a pie slice touch started.
| plot | The pie chart. |
| idx | The index of the touched pie slice. |
| event | The event that triggered the selection. |
| - (void) pieChart: | (nonnull CPTPieChart *) | plot | |
| sliceTouchUpAtRecordIndex: | (NSUInteger) | idx | |
(Optional) Informs the delegate that a pie slice touch ended.
| plot | The pie chart. |
| idx | The index of the touched pie slice. |
| - (void) pieChart: | (nonnull CPTPieChart *) | plot | |
| sliceTouchUpAtRecordIndex: | (NSUInteger) | idx | |
| withEvent: | (nonnull CPTNativeEvent *) | event | |
(Optional) Informs the delegate that a pie slice touch ended.
| plot | The pie chart. |
| idx | The index of the touched pie slice. |
| event | The event that triggered the selection. |
| - (void) pieChart: | (nonnull CPTPieChart *) | plot | |
| sliceWasSelectedAtRecordIndex: | (NSUInteger) | idx | |
(Optional) Informs the delegate that a pie slice received both the touch down and up events.
| plot | The pie chart. |
| idx | The index of the touched pie slice. |
| - (void) pieChart: | (nonnull CPTPieChart *) | plot | |
| sliceWasSelectedAtRecordIndex: | (NSUInteger) | idx | |
| withEvent: | (nonnull CPTNativeEvent *) | event | |
(Optional) Informs the delegate that a pie slice received both the touch down and up events.
| plot | The pie chart. |
| idx | The index of the touched pie slice. |
| event | The event that triggered the selection. |