0

I'm trying to remove the X and Y axis ticks and keep their corresponding values.

http://c3js.org/samples/simple_xy.html

So here I'd want to remove those little tick lines on the X and Y axis, but keep the values. What is the best way to proceed here? I couldn't find a way through the c3js config to change this. Thanks!

Shail Patel
  • 1,764
  • 5
  • 30
  • 46

1 Answers1

3

Try the following CSS rule:

.tick line {
  display: none;
}
lhoworko
  • 1,191
  • 2
  • 13
  • 24