Limit digits in Desmos Graph?

Is there a way to limit the number of significant digits displayed on the value of an expression used in a label to be displayed in the temp desmos graph of an activity?

(I’m assuming you’re asking for within the actual graph and not the CL)
You can round, but not significant digits I believe.

If point A uses variables, x_1 and y_1 for example, when you define point A, use the round function (this will round to 2 decimal places):
A= (round(x_1, 2), round(y_1, 2) )

If you’re using sliders, you can set the step to

Thank you! Both suggestions will work nicely!