4

我有很多关于传奇的条目。有人可以帮忙制作CPTLegend可滚动的吗?

这是我使用的代码CPTLegend

-(void)configureLegend {
    // 1 - Get graph instance
    CPTGraph *graph = self.hostView.hostedGraph;
    // 2 - Create legend
    CPTLegend *theLegend = [CPTLegend legendWithGraph:graph];
    // 3 - Configure legen
    theLegend.numberOfColumns = 1;
    theLegend.fill = [CPTFill fillWithColor:[CPTColor clearColor]];
    theLegend.borderLineStyle = [CPTLineStyle lineStyle];
    theLegend.cornerRadius = 2.0;
    // 4 - Add legend to graph
    graph.legend = theLegend;     
    graph.legendAnchor = CPTRectAnchorBottom;
    CGFloat legendPadding = -(self.view.bounds.size.width / 3);
    graph.legendDisplacement = CGPointMake(-80, 120.0);

}
4

2 回答 2

3

对此有一个出色的功能要求,但目前没有对可滚动图例的内置支持。您可以通过调整文本和样本大小、边距以及行数和列数来尝试使所有内容都适合。另一种方法是使用自定义视图制作您自己的滚动图例,并将其放置在图形前面。

于 2013-10-25T15:36:02.987 回答
3

您可以创建滚动视图并添加图例。这是解决方法,但工作。示例代码:

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 1000, 450)];
scrollView.showsVerticalScrollIndicator = YES;
scrollView.clipsToBounds = YES;
scrollView.userInteractionEnabled = YES;
scrollView.contentSize = CGSizeMake(scrollView.contentSize.width, 5000);
[scrollView.layer addSublayer:self.hostView.hostedGraph.legend];
[self.hostView addSubview:scrollView];

PS您应该计算图例和滚动视图的坐标以及滚动视图的contentSize

于 2013-11-01T12:25:57.907 回答