NChartDelegate Protocol Reference
Conforms to | NSObject |
---|---|
Declared in | NChart.h |
Overview
The NChartDelegate protocol provides methods to reflect changes which have appeared in the chart.
– chartDelegateTimeIndexOfChart:changedTo:
Report that the time index on time axis was changed. A change may appear if the user moves the handler on the time axis, plays back the time axis or if someone changed the current time index of time axis (see NChartTimeAxis for details).
- (void)chartDelegateTimeIndexOfChart:(NChart *)chart changedTo:(double)timeIndex
Parameters
chart |
|
---|---|
timeIndex |
|
Declared In
NChart.h
– chartDelegatePointOfChart:selected:
Report that user selected a chart point.
- (void)chartDelegatePointOfChart:(NChart *)chart selected:(NChartPoint *)point
Parameters
chart |
|
---|---|
point |
|
See Also
Declared In
NChart.h
– chartDelegateChart:object:didEndAnimating:
Report that animation of chart object is done.
- (void)chartDelegateChart:(NChart *)chart object:(id)object didEndAnimating:(NChartAnimationType)animation
Parameters
chart |
|
---|---|
object |
|
animation |
|
See Also
Declared In
NChart.h
– chartDelegatePointOfChart:hovered:phase:
Report that user hovers a chart point.
- (void)chartDelegatePointOfChart:(NChart *)chart hovered:(NChartPoint *)point phase:(NChartHover)phase
Parameters
chart |
|
---|---|
point |
|
phase |
|
See Also
Declared In
NChart.h
– chartDelegateChart:didChangeZoomEventPhase:
Report that zoom of the chart has changed its phase.
- (void)chartDelegateChart:(NChart *)chart didChangeZoomEventPhase:(NChartEventPhase)phase
Parameters
chart |
|
---|---|
phase |
|
See Also
Declared In
NChart.h
– chartDelegateChartDidMove:
Report that charts content is moved by pan, zoom or bouncing.
- (void)chartDelegateChartDidMove:(NChart *)chart
Parameters
chart |
|
---|
Declared In
NChart.h
– chartDelegateChartRangeChanged:
Report that range selector moved.
- (void)chartDelegateChartRangeChanged:(NChart *)chart
Parameters
chart |
|
---|
Declared In
NChart.h