我正在使用 core-plot 框架绘制图形,当用户点击 polt 符号时我正在显示文本。但我的问题是,文本在绘图符号上重叠。如何解决这个问题。请帮助我。
我的代码是这样的
- (void) scatterPlot:(CPTScatterPlot *)plot plotSymbolWasSelectedAtRecordIndex:(NSUInteger)index{
if ([plot.identifier isEqual:@"Green Plot"]) {
selectedLineIndex1 = index;
selectedLineIndex2 = -1;
[graph reloadData];
}
else if ([plot.identifier isEqual:@"Blue Plot"]) {
selectedLineIndex1 = -1;
selectedLineIndex2 = index;
[graph reloadData];
} }
- (CPTLayer *) dataLabelForPlot:(CPTPlot *)plot recordIndex:(NSUInteger)index {
// Setup a style for the annotation text
CPTMutableTextStyle *hitAnnotationTextStyle = [CPTMutableTextStyle textStyle];
hitAnnotationTextStyle.color = [CPTColor blackColor];
hitAnnotationTextStyle.fontSize = 18.0f;
hitAnnotationTextStyle.fontName = @"Verdana-Bold";
// Now add the annotation text to the plot
CPTTextLayer *selectedText = [CPTTextLayer layer];
selectedText.textStyle = hitAnnotationTextStyle;
selectedText.position = CGPointMake(0.0,40.0f);
if (index == selectedLineIndex1 && [plot.identifier isEqual:@"Green Plot"]) {
selectedText.text = [NSString stringWithFormat:@"%.1f",[[dataForPlot objectAtIndex:index] floatValue]];
}
else if (index == selectedLineIndex2 && [plot.identifier isEqual:@"Blue Plot"]) {
selectedText.text = [NSString stringWithFormat:@"%.1f",[[yPoints objectAtIndex:index] floatValue]];
}
return selectedText;}
有什么错误告诉我还是有任何其他方式只是建议我请提供一些样品。
提前致谢。