//// PNChartDelegate.h// PNChartDemo//// Created by kevinzhow on 13-12-11.// Copyright (c) 2013年 kevinzhow. All rights reserved.//#import <Foundation/Foundation.h>@protocolPNChartDelegate<NSObject>@optional/** * Callback method that gets invoked when the user taps on the chart line. */-(void)userClickedOnLinePoint:(CGPoint)pointlineIndex:(NSInteger)lineIndex;/** * Callback method that gets invoked when the user taps on a chart line key point. */-(void)userClickedOnLineKeyPoint:(CGPoint)pointlineIndex:(NSInteger)lineIndexpointIndex:(NSInteger)pointIndex;/** * Callback method that gets invoked when the user taps on a chart bar. */-(void)userClickedOnBarAtIndex:(NSInteger)barIndex;-(void)userClickedOnPieIndexItem:(NSInteger)pieIndex;-(void)didUnselectPieItem;@end