Guest User

Untitled

a guest
Oct 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. % https://tex.stackexchange.com/a/74246
  2. documentclass{standalone}
  3.  
  4. usepackage{pgfplots}
  5.  
  6. pgfplotsset{compat=1.16}
  7.  
  8. begin{document}
  9.  
  10. begin{tikzpicture}
  11. begin{axis}[
  12. xbar,
  13. symbolic y coords={{Support},{Accessibility},{Ease of use},{Innovation},{Quality}}
  14. ]
  15. addplot[left color=blue,right color=magenta,
  16. at begin bar={%
  17. begin{scope}%
  18. shadepgfextra
  19. },
  20. at end bar={%
  21. endpgfextra;
  22. end{scope}%
  23. },
  24. ]
  25. coordinates {(4.5,Support) (4,Accessibility) (1,Ease of use) (3,Innovation) (5,Quality)};
  26. end{axis}
  27. end{tikzpicture}
  28.  
  29. end{document}
Add Comment
Please, Sign In to add comment