如何设置 Android TeeChart 边框颜色

How to set Android TeeChart Border Color

我使用 Steema TeeChart JAVA 为 Android 创建图表。 使用以下代码,我尝试更改图表边框的颜色,但没有任何效果。

public void setBorderColor(Color borderColor){

    tChart.getWalls().getRight().setColor(borderColor);
    tChart.getWalls().getLeft().setColor(borderColor);
    tChart.getWalls().getBottom().setColor(borderColor);
    tChart.getWalls().getBack().setColor(borderColor);
}

尝试改变笔的颜色 getPen() 而不是改变墙壁的颜色。即:

public void setBorderColor(Color borderColor){

    tChart.getWalls().getRight().getPen().setColor(borderColor);
    tChart.getWalls().getLeft().getPen().setColor(borderColor);
    tChart.getWalls().getBottom().getPen().setColor(borderColor);
    tChart.getWalls().getBack().getPen().setColor(borderColor);
}

您可能也对更改轴笔颜色感兴趣。即:

public void setBorderColor(Color borderColor){

    tChart.getWalls().getRight().getPen().setColor(borderColor);
    tChart.getWalls().getLeft().getPen().setColor(borderColor);
    tChart.getWalls().getBottom().getPen().setColor(borderColor);
    tChart.getWalls().getBack().getPen().setColor(borderColor);

    tChart.getAxes().getLeft().getAxisPen().setColor(borderColor);
    tChart.getAxes().getBottom().getAxisPen().setColor(borderColor);
}