How do you change the last tick value in D3.js?

Viewed 1451

Say I have something like this:

|------|------|------|------|------|------|------|------|
0      10     20     30     40     50     60     70     80

How can I change the last value

80

to

> 80

I've tried,

.tickValues();

editing

.domain()

etc.

2 Answers
Related