0

I want the little vertical line which indicate the coordinate of the system in plot bigger. For example, in the picture below I marked those lines I am talking about with a blue rectangle. How can I make all such a indicators bigger?

enter image description here

MOON
  • 3,864
  • 23
  • 49
  • @YvesKlett It's not a duplicate because the link you quote doesn't cover framed plots. – eldo Jun 17 '14 at 11:58
  • @eldo FrameTicks was mentioned in comments, though. I think it can be considered a duplicate, but note that duplicates are not necessarily deleted since it can be better for there to be multiple ways to find an answer. On the other hand the two questions might be merged at a later date. – Oleksandr R. Jun 17 '14 at 12:17

1 Answers1

5

For example:

n=0.1;

Plot[Cos[x], {x, 0, 10}, 
 Ticks -> {Table[{x, x, n}, {x, 1, 10}], {-1, 1}}]

enter image description here

n = 0.05;

Plot[Cos[x], {x, 0, 2 Pi}, Frame -> True, 
 FrameTicks -> {Table[{x, x, n}, {x, 0, 2 Pi, Pi/2}], 
   Table[{x, x, n}, {x, -1, 1, 0.5}]}]

enter image description here

eldo
  • 67,911
  • 5
  • 60
  • 168