Analog Scale Tick Labels

I would like my tick labels to show decimals, but they're only showing integers. My range is 904.7 - 909.0, so I'd like to be able to show more granulation. Right now, the first major tick is at 905.

image

Is there any way to accomplish this?

Yes,

The trick is to set your Label Format value as mentioned here. By default, the label format will be %.0f. As such, values will interpret as integers. If you would like single decimal precision, try setting it to %.1f. Then, your tick marks should be showing numbers like 904.7. However, keep in mind your span will also need set to a multiple of that to show properly, unless of course you're only looking for your min value to show that way.

Thank you, I see the prop now. It got lost with all of the others.