简体   繁体   中英

How to set slice separator color in Core plot

默认情况下,分隔符是细白线,我该如何配置它,使其更宽并更改颜色,这是可能的吗?

Solution:

    CPTMutableLineStyle *line=[CPTMutableLineStyle lineStyle];
        line.lineColor=[CPTColor grayColor];
        line.lineWidth = 1.0;

    pieChart.borderLineStyle=line;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM