样式域AndroidPlot中的值不包括第一个值

时间:2014-03-22 03:23:29

标签: androidplot

我正在开发一个需要使用Graph的Android应用程序,为此我使用的是AndroidPlot的XYSeries。我试图设计图形,一切都很好,但域的第一个值。正如您在下面的屏幕截图中看到的那样,该样式不适用于所有值 Androidplot screenshot

这是我设定值的方式

    plot.getGraphWidget().getDomainLabelPaint().setTextSize(22);

    plot.getGraphWidget().getRangeLabelPaint().setTextSize(22);
    plot.getGraphWidget().getRangeLabelPaint()
            .setColor(Color.BLACK);

您能否告诉我错误以及如何将风格应用于所有价值观?

1 个答案:

答案 0 :(得分:2)

我刚刚解决了这个问题,第一个值叫做DomainOriginLabelPaint而不是DomainLabelPaint,为了设置它我们需要添加

plot.getGraphWidget()getDomainOriginLabelPaint()setTextSize(22);