我有一个可视化,它从每次更改标记时被 TERR 函数替换的数据表中绘制。问题是每次替换表格时我的表格列的自定义格式都会丢失。基本上,我希望我的一些基于列的工具提示具有我定义的自定义数字格式。每次我评论时,表格都会被替换,格式也会丢失。我想了几个不同的解决方案:
- 使用某种 attr($map) 函数格式化 TERR 中的表格,并且格式应该由工具提示继承。问题是 - 我找不到任何关于如何做到这一点的例子......
- 在 Python 中格式化表格列 - 但工具提示没有继承格式
- 直接在 Python 中格式化工具提示 - 不知道该怎么做。
有人有想法么?
这是列格式代码:
formatter=DataType.Real.CreateLocalizedFormatter()
formatter.Category=NumberFormatCategory.Number
formatter.DecimalDigits=0
formatter.GroupSeparatorEnabled = 1 # not sure what this does
# I actually want to apply a Custom Short number format that I've defined
for cc in table.Columns:
if cc.Name == "myCol":
cc.Properties.Formatter=formatter