plotly incorrectly rounding values

plotly is incorrectly rounding values

how does one stop this from occurring?

plot_ly(
domain = list(x = c(0, 1), y = c(0, 1)),
value = 423,
title = list(text = "Speed"),
type = "indicator",
mode = "gauge+number+delta",
delta = list(reference = 4800),
gauge = list(
axis =list(range = list(NULL, 5000)),
steps = list(
list(range = c(0, 4800), color = "lightgray"),
list(range = c(4800, 5000), color = "gray")),
threshold = list(
line = list(color = "red", width = 4),
thickness = 0.75,
value = 4800)))

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.