# Logarifmic axis minor tick lables removing

**URL:** https://community.plotly.com/t/logarifmic-axis-minor-tick-lables-removing/32777
**Category:** 📊 Plotly Python
**Created:** [December 19, 2019, 11:45am UTC](https://community.plotly.com/t/logarifmic-axis-minor-tick-lables-removing/32777 "2019-12-19T11:45:25Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Ilia](https://avatars.discourse-cdn.com/v4/letter/i/eb9ed0/32.png) [@Ilia](https://community.plotly.com/u/Ilia)
#### Post date: [December 22, 2019, 2:51pm UTC](https://community.plotly.com/t/logarifmic-axis-minor-tick-lables-removing/32777/3 "2019-12-22T14:51:15Z")

</div>

Dear, @Emmanuelle. After using your solution got Y title “bug”

 ![ISP](https://us1.discourse-cdn.com/flex024/uploads/plot/original/2X/e/ee2590010a988710e4ee3994231539aa1056caf6.png)

my code

```auto
fig = go.Figure(data=[go.Bar(x = ICP['Name'], y = ICP['au'],
                                text=round(ICP['au'], 3),
                                textposition='auto')])
fig.update_yaxes(type="log", showgrid=True, dtick=1)
#your method
tickvals = np.concatenate((np.arange(0.004, 0.01, 0.001),
                           np.arange(0.01, 0.1, 0.01),
                           np.arange(0.1, 1.1, 0.1),
                           np.arange(1, 10.1, 1)))
ticktext = [str(val) if val in [0.01, 0.1, 1, 10] else '' for val in tickvals]
fig.update_yaxes(type="log", tickvals=tickvals, ticktext=ticktext, showgrid=True)

fig.update_layout(
    template="simple_white",
    #title="Us influence on CO conversion",
    xaxis_title= "Type",
    yaxis_title="log, [%]",
    font=dict(
        size=14,
        color="black")
)
fig.write_image("images/ISP.png", width=1000, height=600, scale=2)

fig.show()

```

Do you have any ideas about how to fix it?

---

_[View the full topic](https://community.plotly.com/t/logarifmic-axis-minor-tick-lables-removing/32777)._
