Group: Forum Members
Last Active: Last Year
Posts: 15,
Visits: 48
|
Hi!
In my 3D-Surface chart I have an AutomaticPalette with 6 levels defined (see attachment). Is it possible to format the legend, so that only 2 decimals (instead of 6) are shown? I already tried surface.Legend.Format, but that didn't work.
Thanks a lot!
|
Group: Forum Members
Last Active: Yesterday @ 1:54 AM
Posts: 3,054,
Visits: 4,009
|
Hi, The ValueFormatter property of the surface series controls the formatting of the values displayed in the legend. You can use something like: surface.ValueFormatter = new NNumericValueFormatter("0.00"); or surface.ValueFormatter = new NNumericValueFormatter("0.##");
Best Regards, Nevron Support Team
|