How can I hide the first Y Axis tick mark on ChartJs?

๐Ÿ‘:-2

Iโ€™d need to see the markup for the axis and ticks to be more specific, but you want to do something like this:

.ticks:first-of-type {
    display: none;
}

Where .ticks is the class name of the tick elements.

Leave a comment