我有一个可视化,可以在每次更改标记时从一个数据表中绘制,该数据表将被TERR函数替换。问题是每次更换表时我的表列自定义格式都会丢失。基本上我想要一些基于我的列的工具提示,以获得我定义的自定义数字格式。每次我说,表都被替换,格式化丢失。我想过几个不同的解决方案:
有人有什么想法吗?
这是列格式代码:
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