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!

4

1 回答 1

3

Try the following CSS rule:

.tick line {
  display: none;
}
于 2015-05-19T17:39:49.543 回答