如何更改行的网格线颜色?

时间:2017-03-06 16:17:32

标签: eclipse-rcp nattable

我试过

IConfigLabelAccumulator cellLabelAccumulator = new IConfigLabelAccumulator() {
    @Override
    public void accumulateConfigLabels(LabelStack configLabels, int columnPosition, int rowPosition) {
        int rowIndex = bodyDataLayer.getRowIndexByPosition(rowPosition);
        if ( rowIndex == 2) {
            configLabels.addLabel("FOO");
        }
    }
};
bodyDataLayer.setConfigLabelAccumulator(cellLabelAccumulator);
natTable.getConfigRegistry().registerConfigAttribute(CellConfigAttributes.GRID_LINE_COLOR, GUIHelper.COLOR_GREEN, DisplayMode.NORMAL, "FOO");

但它没有成功。 我怎样才能做到这一点?谢谢!

1 个答案:

答案 0 :(得分:0)

无法更改单行的网格线颜色。您只能为整个网格更改它。唯一的另一种方法是通过IOverlayPainter进行覆盖。