# Plots Ticks Axis Override

**URL:** https://discourse.julialang.org/t/plots-ticks-axis-override/25026
**Category:** Visualization
**Tags:** plotting
**Created:** [June 6, 2019, 9:23pm UTC](https://discourse.julialang.org/t/plots-ticks-axis-override/25026 "2019-06-06T21:23:01Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fer](https://avatars.discourse-cdn.com/v4/letter/f/90ced4/32.png) [@fer](https://discourse.julialang.org/u/fer)
#### Post date: [June 6, 2019, 9:23pm UTC](https://discourse.julialang.org/t/plots-ticks-axis-override/25026/1 "2019-06-06T21:23:01Z")

</div>

I am using the Plots library and I create plots as attached to this post.  
The y-ticks label for instance of the plot of “x4” are not nice and I would like to find an automatic way to arrange them (I created this plots inside a script so I can’t manually change every figures).

Here is what I’ve done so far for instance for the x4 plot:

```julia
ff=x4
plot(tt,ff,ylabel=L"x_4",label="",xticks=[],xformatter=x->string(Int(x/1e10),"*pow10"),lw=1.7)
px4=vline!(ti0,label="",xticks=[],color=:red,linestyle=:dash)

```

and here is my layout:

ly = @layout [[aa;bb;cc;dd;ee] [ff;gg;hh;ii;jj] kk{0.3w}  
I would not like to change the font of the ticks.

Any suggestions ?

![playout](https://global.discourse-cdn.com/julialang/original/3X/1/4/14959679d2730606877f39d77941abf0e03a012d.png)
