如何在 spreadsheetview controlsfx 中旋转单元格值?
How to rotate cell value in spreadsheetview controlsfx?
我尝试使用下面的代码
//css
.spreadsheet-cell.verticalHeader{
-fx-rotate: -90;
-fx-background-color: white;
}
//controller
cell = SpreadsheetCellType.STRING.createCell(row, 2, 1,1, "Pin");
cell.getStyleClass().add("verticalHeader");
rows.add(cell);
但是输出是这样的:
你到底想做什么?您正在对单元格本身应用旋转,因此旋转了整个节点。
我的建议是在 SpreadsheetCell 中设置一个空值,并在 SpreadsheetCell 的图形中设置一个 Label。然后你就可以在节点内旋转标签。
当然,如果您想编辑这些值,您会遇到一些问题,但可以做到。
考虑在我们的 google 组中发布您的问题,因为我们会收到通知,您可能会更快得到答案:http://groups.controlsfx.org/
我尝试使用下面的代码
//css
.spreadsheet-cell.verticalHeader{
-fx-rotate: -90;
-fx-background-color: white;
}
//controller
cell = SpreadsheetCellType.STRING.createCell(row, 2, 1,1, "Pin");
cell.getStyleClass().add("verticalHeader");
rows.add(cell);
但是输出是这样的:
你到底想做什么?您正在对单元格本身应用旋转,因此旋转了整个节点。
我的建议是在 SpreadsheetCell 中设置一个空值,并在 SpreadsheetCell 的图形中设置一个 Label。然后你就可以在节点内旋转标签。 当然,如果您想编辑这些值,您会遇到一些问题,但可以做到。
考虑在我们的 google 组中发布您的问题,因为我们会收到通知,您可能会更快得到答案:http://groups.controlsfx.org/