You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| clamp | Constrains the return value of map within the scale’s range if it is true. |`boolean`|`false`|
176
215
| nice | Extends the domain so that it starts and ends on nice round values if it is true. |`boolean`|`false`|
177
216
| interpolate | Sets the scale’s range interpolator factory if it is specified. |`(a: number, b: number) => (t: number) => T`|`(a, b) => (t) => a * (1 - t) + b * t`|
217
+
| breaks | Set linear breaks display and style. |[breaks](#breaks)| - |
218
+
219
+
### breaks
220
+
221
+
| Key | Description | Type | Default Value |
222
+
| ------- | ------- | ------- | ------- |
223
+
| start | start value. |`number`| - |
224
+
| end |end value. |`number`| - |
225
+
| gap | Proportion of the broken (0 ~ 1). |`number`| 0.03 |
0 commit comments