Core Plot (macOS)
Cocoa plotting framework for macOS, iOS, and tvOS
|
Bar plot delegate. More...
#import <CPTBarPlot.h>
Public Instance Methods | |
Point Selection | |
(void) | - barPlot:barWasSelectedAtRecordIndex: |
(Optional) Informs the delegate that a bar was both pressed and released. More... | |
(void) | - barPlot:barWasSelectedAtRecordIndex:withEvent: |
(Optional) Informs the delegate that a bar was both pressed and released. More... | |
(void) | - barPlot:barTouchDownAtRecordIndex: |
(Optional) Informs the delegate that a bar was pressed. More... | |
(void) | - barPlot:barTouchDownAtRecordIndex:withEvent: |
(Optional) Informs the delegate that a bar was pressed. More... | |
(void) | - barPlot:barTouchUpAtRecordIndex: |
(Optional) Informs the delegate that a bar was released. More... | |
(void) | - barPlot:barTouchUpAtRecordIndex:withEvent: |
(Optional) Informs the delegate that a bar was released. More... | |
Public Instance Methods inherited from <CPTPlotDelegate> | |
(void) | - plot:dataLabelWasSelectedAtRecordIndex: |
(Optional) Informs the delegate that a data label was both pressed and released. More... | |
(void) | - plot:dataLabelWasSelectedAtRecordIndex:withEvent: |
(Optional) Informs the delegate that a data label was both pressed and released. More... | |
(void) | - plot:dataLabelTouchDownAtRecordIndex: |
(Optional) Informs the delegate that a data label was pressed. More... | |
(void) | - plot:dataLabelTouchDownAtRecordIndex:withEvent: |
(Optional) Informs the delegate that a data label was pressed. More... | |
(void) | - plot:dataLabelTouchUpAtRecordIndex: |
(Optional) Informs the delegate that a data label was released. More... | |
(void) | - plot:dataLabelTouchUpAtRecordIndex:withEvent: |
(Optional) Informs the delegate that a data label was released. 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: |
Bar plot delegate.
- (void) barPlot: | (nonnull CPTBarPlot *) | plot | |
barTouchDownAtRecordIndex: | (NSUInteger) | idx | |
(Optional) Informs the delegate that a bar was pressed.
plot | The bar plot. |
idx | The index of the clicked bar. |
- (void) barPlot: | (nonnull CPTBarPlot *) | plot | |
barTouchDownAtRecordIndex: | (NSUInteger) | idx | |
withEvent: | (nonnull CPTNativeEvent *) | event | |
(Optional) Informs the delegate that a bar was pressed.
plot | The bar plot. |
idx | The index of the clicked bar. |
event | The event that triggered the selection. |
- (void) barPlot: | (nonnull CPTBarPlot *) | plot | |
barTouchUpAtRecordIndex: | (NSUInteger) | idx | |
(Optional) Informs the delegate that a bar was released.
plot | The bar plot. |
idx | The index of the clicked bar. |
- (void) barPlot: | (nonnull CPTBarPlot *) | plot | |
barTouchUpAtRecordIndex: | (NSUInteger) | idx | |
withEvent: | (nonnull CPTNativeEvent *) | event | |
(Optional) Informs the delegate that a bar was released.
plot | The bar plot. |
idx | The index of the clicked bar. |
event | The event that triggered the selection. |
- (void) barPlot: | (nonnull CPTBarPlot *) | plot | |
barWasSelectedAtRecordIndex: | (NSUInteger) | idx | |
(Optional) Informs the delegate that a bar was both pressed and released.
plot | The bar plot. |
idx | The index of the |
clicked bar.
- (void) barPlot: | (nonnull CPTBarPlot *) | plot | |
barWasSelectedAtRecordIndex: | (NSUInteger) | idx | |
withEvent: | (nonnull CPTNativeEvent *) | event | |
(Optional) Informs the delegate that a bar was both pressed and released.
plot | The bar plot. |
idx | The index of the |
clicked bar.
event | The event that triggered the selection. |