在CorePlot图例中画一条线

时间:2019-07-08 10:04:01

标签: ios objective-c xcode

我需要绘制一个样式如下的图例:wanted legend ,但在CorePlot中,默认图例属性是正方形,我正竭力尝试理解并正确设置

我不知道该如何尝试,我还看到了其他一些问题,这些问题似乎像他们想要的那样绘制了图例,但是我不知道他们在做什么以实现这一目标。

这是我形成图例的代码:

CPTLegend *legend = [CPTLegend legendWithGraph:_graph];
legend.numberOfColumns = 4;
legend.numberOfRows = 4;
legend.fill = [CPTFill fillWithColor:[CPTColor clearColor]];
_graph.legend = legend;
_graph.legendAnchor = CPTRectAnchorBottom;
_graph.legendDisplacement = CGPointMake(0.0, 100.0);

我希望能达到照片中的简单线条。enter image description here

这个问题似乎显示出与我类似的问题,但我看不到有人用这一行解释如何制作图例:

Coreplot legend with title, country label and under that line in swift

0 个答案:

没有答案