0

我正在使用 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;}

有什么错误告诉我还是有任何其他方式只是建议我请提供一些样品。

提前致谢。

4

1 回答 1

1

我找到了一个解决方案,就在我创建折线图时,将 labelOffSet 添加到折线图。

示例代码。

CPTScatterPlot *boundLinePlot2 = [[[CPTScatterPlot alloc] init] autorelease];
CPTMutableLineStyle *lineStyle2 = [CPTMutableLineStyle lineStyle];
lineStyle2.miterLimit = 1.0f;
lineStyle2.lineWidth = 3.0f;
lineStyle2.lineColor = [CPTColor redColor];
boundLinePlot2.dataLineStyle = lineStyle2;
boundLinePlot2.identifier = @"Green Plot";
boundLinePlot2.dataSource = self;
boundLinePlot2.delegate = self;

我将此线添加到折线图中,以便解决我的问题。

boundLinePlot2.labelOffset = 10.0f;
boundLinePlot2.labelRotation = M_PI_4;
于 2012-11-30T07:26:08.233 回答