JunsionGu

Fix little issue in PNLineChart,m

the delegate(userClickedOnLinePoint: lineIndex:) in method(touchPoint:
withEvent:) is never called,because the point p1 is not in each line
path.So,when touch the line path,nothing happens(the delegate is
invalid).
... ... @@ -435,9 +435,13 @@
if ( i != 0 ) {
[progressline addLineToPoint:CGPointMake(x, y)];
[lineStartEndPointsArray addObject:[NSValue valueWithCGPoint:CGPointMake(x, y)]];
}
[progressline moveToPoint:CGPointMake(x, y)];
if(i != chartData.itemCount - 1){
[lineStartEndPointsArray addObject:[NSValue valueWithCGPoint:CGPointMake(x, y)]];
}
}
[linePointsArray addObject:[NSValue valueWithCGPoint:CGPointMake(x, y)]];
... ...