No grid lines inside the panel, but axis ticks present in Gadfly - Julia

799 Views Asked by At

So, basically I want to make plot that shows the axis ticks little line but doesn't show the grid lines inside the panel.

I was able to hide the grid lines inside the panel with Theme(grid_line_width=0mm) and add a border with panel_stroke=color("black").

It looks like this:

which is close enough to what I'm looking for except I want little ticks for the axes.

I tried with

Guide.xticks(ticks=[0:50:500]),
Guide.yticks(ticks=[0:0.001:0.007])

with no luck.

Any ideas?

1

There are 1 best solutions below

0
On

As pointed in the comments there is no property to set the ticks as required.