# Full border with ticks

**URL:** https://discourse.julialang.org/t/full-border-with-ticks/25060
**Category:** Visualization
**Created:** [June 7, 2019, 11:12pm UTC](https://discourse.julialang.org/t/full-border-with-ticks/25060 "2019-06-07T23:12:27Z")
**Posts on this page:** 1
**Showing post:** 12

<div class="post-metadata">

### Author: ![Milo\_Guerrero](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/milo_guerrero/32/8502_2.png) [@Milo\_Guerrero](https://discourse.julialang.org/u/Milo_Guerrero)
#### Post date: [May 25, 2020, 10:03pm UTC](https://discourse.julialang.org/t/full-border-with-ticks/25060/12 "2020-05-25T22:03:46Z")

</div>

Hello, I solved the problem with the two last line of code:

```julia
plot(xaxisn(0.01,1.69,0.01),conden3D101, xlabel=L"T/T_0", ylabel=L"N_0/N",minorticks=:false, framestyle=:box, thickness_scaling=1.7,grid=:none, linewidth = 2, guidefontsize=12,ylim=(0,1.1), legend=:topright,legendfontsize=6, label="1001 planos menos 1",linestyle=:dot)
plot!([xaxisn(0.01,1.69,0.01)],conden3D201, label="201 planos menos 1",linestyle=:dashdot)
plot!([xaxisn(0.01,1.69,0.01)],conden3D501, label="501 planos menos 1",linestyle=:dashdotdot)
plot!([xaxisn(0.01,1.69,0.01)],conden3D1001, label="1001 planos menos 1")
plot!(twinx(), xmirror=:true,grid=:false,ylim=(0,1.1),xticks = ([0.5;1;1.5;2.0;], ["","", "", ""]),yticks=([0,0.25,0.50,0.75,1.0],["","","","",""]))
plot!(size=(700,600))

```

And I get plots like this

 ![captura para el foro](https://global.discourse-cdn.com/julialang/original/3X/a/c/acd2582d24e54e3b9ea980778c86d8ab21384264.png)  
its not a aestetic code but works

---

_[View the full topic](https://discourse.julialang.org/t/full-border-with-ticks/25060)._
