Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. begin{tikzpicture}
  2. begin{axis}
  3. addplot coordinates {
  4. (100,200001)
  5. (200,200003)
  6. (300,200005)
  7. };
  8. end{axis}
  9. end{tikzpicture}
  10.  
  11. ytick = {200000, 200005, 200010}
  12.  
  13. yticklabel style={precision = 5,}
  14.  
  15. documentclass{minimal}
  16. usepackage{pgfplots}
  17.  
  18.  
  19. begin{document}
  20. begin{tikzpicture}
  21. begin{axis}[
  22. scaled y ticks = false,
  23. y tick label style={/pgf/number format/fixed,
  24. /pgf/number format/1000 sep = thinspace % Optional if you want to replace comma as the 1000 separator
  25. }]
  26. addplot coordinates {
  27. (100,200001)
  28. (200,200003)
  29. (300,200005)
  30. };
  31. end{axis}
  32. end{tikzpicture}
  33.  
  34. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement