1

我想在我的图表中添加一个用户可以单击和拖动的小部件。我已经设法使用 CPTPlotSpaceAnnonation (因为我也希望它也随着数据滚动)和 CPTBorderedLayer 来做到这一点。基本功能有效,现在我想改进小部件的外观。到目前为止,它只是一个绿色圆圈。

下面的代码生成下面的圆圈,注意阴影是如何被裁剪到图层的矩形的,而边框是跟随图层而不是圆圈的,

在此处输入图像描述

我怎样才能抚摸圆圈而不是图层?我想我可以通过使图层的框架更大来避免剪裁。是否可以将 CAShapeLayer 类与 Core Plot 注释一起使用?这将是绘制小部件的一种简单方法。

// Add a circular annotation to graph with fill and shadow
annotation = [[CPTPlotSpaceAnnotation alloc] 
                  initWithPlotSpace:graph.defaultPlotSpace 
                    anchorPlotPoint:anchorPoint];

// Choosing line styles and fill for the widget
NSRect frame = NSMakeRect(0, 0, 50.0, 50.0);
CPTBorderedLayer *borderedLayer = [[CPTBorderedLayer alloc] initWithFrame:frame];

// Circular shape with green fill
CGPathRef outerPath = CGPathCreateWithEllipseInRect(frame, NULL);
borderedLayer.outerBorderPath = outerPath;
CPTFill *fill = [CPTFill fillWithColor:[CPTColor greenColor]];
borderedLayer.fill = fill;

// Basic shadow
CPTMutableShadow *shadow = [CPTMutableShadow shadow];
shadow.shadowOffset = CGSizeMake(0.0, 0.0);
shadow.shadowBlurRadius = 6.0;
shadow.shadowColor = [[CPTColor blackColor] colorWithAlphaComponent:1.0];
borderedLayer.shadow = shadow;

// Add to graph
annotation.contentLayer = borderedLayer;
annotation.contentLayer.opacity = 1.0;
[graph addAnnotation:annotation];
4

1 回答 1

0

不要设置图层的边框路径。相反,只需将 设置cornerRadius为框架宽度的一半。

borderedLayer.cornerRadius = frame.size.width * 0.5;
于 2012-07-21T17:20:44.657 回答