4

I have numerical axis labels in the form 12345. Plotly is formatting these numbers in the form 12.3k.

I'd like to be able to show the unaltered numbers, but so far have been unable to fix the formatting.

1 Answer 1

7

Found that each axis can take a tickformat value which defines the appearance of the ticks.

var layout = {
    xaxis: {
        tickformat : ":04,2f"
    },
    yaxis: {
        tickformat : ":04,2f"
    }
};
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.