菜鸟教程小白 发表于 2022-12-13 02:42:10

ios - 核心情节 : Grid lines appear once per two plots


                                            <p><p>我正在使用 Core Plot 为 iPhone 应用程序绘制一些内存统计数据。这是一个示例图</p>

<p> <img src="/image/68iA7.png" alt="enter image description here"/> </p>

<p>为什么网格线只出现在每个交替图上?我希望它出现在每个情节中。我该怎么做?这是我配置网格线的代码。</p>

<pre><code>    CPTMutableLineStyle *majorGridLineStyle = ;
    majorGridLineStyle.lineWidth = 0.5f;
    majorGridLineStyle.lineColor = ; //[ colorWithAlphaComponent:0.6f];
    axisSet.xAxis.majorGridLineStyle = majorGridLineStyle;
    axisSet.yAxis.majorGridLineStyle = majorGridLineStyle;
</code></pre>

<p>请帮忙。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>majorGridLineStyle</code> 用于主要刻度位置的网格线,即示例图像中带有标签的网格线。设置 <code>minorGridLineStyle</code> 以在主要刻度之间的次要刻度位置绘制线条。这两种线型可以不同,例如强调主要的网格线。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 核心情节 : Grid lines appear once per two plots,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16667752/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16667752/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 核心情节 : Grid lines appear once per two plots