我正在使用 Coreplot 库来显示CandlestickPlot
. 默认实现只有一个CPTPlotSpaceAnnotation
附加到图中的每个图(OHLC/CandleStickPlot 中的最高值)。我想显示 High 和 Low 的两个值。我尝试添加下面的代码但没有运气。
CPTPlotSpaceAnnotation *labelAnnotation = [[CPTPlotSpaceAnnotation alloc] initWithPlotSpace:self.plotSpace anchorPlotPoint:[NSArray arrayWithObjects:newX, newY, nil]];
labelAnnotation.annotationHostLayer = label.annotationHostLayer;
labelAnnotation.contentLayer = label.contentLayer;
[self addAnnotation:labelAnnotation];
[label
是显示的默认注释]