FlexGrid Footer 中总计后使用千分符格式化显示问题
我尝试使用c1FlexGrid1.Styles.Footer.Format= "###,##0.00" 及 c1FlexGrid1.Styles.Footer.Format="N2"无效后,又尝试在OwnerDrawCell事件中使用var style = c1FlexGrid1.Styles.Add("footer");
style.BackColor = Color.LightGray;
style.DataType = typeof(double);
style.Format = "N2";
style.Font = new Font("Arial", 10, FontStyle.Bold);
e.Style = style;
也同样无法格式化输出。
验证了一下,目前确实没有别的方式可以设置列脚数字格式。产品本身不支持设置
页:
[1]