I don't really know why it is not working for me. I have a 3D HeatMap chart and I would like the x and y axis label to have only 2 decimal places. My data looks like this: 10.000000, 20.000000.
Unfortunately, when I use the below, the data gets changed to 1.00, 2.00. I have no idea why this could happen.
ultraChart1.Axis.X.Labels.ItemFormatString =
"<DATA_VALUE:###.00>" ;
ultraChart1.Axis.Y.Labels.ItemFormatString =
"<DATA_VALUE:###.00>";
Please help.
You can try:
this.ultraChart1.Axis.X.Labels.ItemFormatString = <DATA_VALUE:0.00##>";
Unfortunately, this is not working for me. Any other suggestion? It keeps dividing my value by 10 when I use the above.