Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我图表控件我们将数据四舍五入,如果您的数据为 1.3456,则四舍五入为 1.345,我们可以将小数点后的数字扩展到 4 或 5。
您可以使用 valueformat 属性来控制小数位
chart.GetAxis().GetLeft().GetLabels().SetValueFormat("0.0000") //对于 4 位小数 chart.GetAxis().GetLeft().GetLabels().SetValueFormat("0.00000")//对于 5底轴的小数位也是类似的。