Commit 50e698eb37ca9bf005408033767387206f834b71
Committed by
GitHub
Merge pull request #764 from Terny22/issue/yAxis-tick-decimals
solved issue with tick-decimals option
Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -251,7 +251,7 @@ export default class TbFlot { |
251 | 251 | if (this.tickUnits) { |
252 | 252 | formatted += ' ' + this.tickUnits; |
253 | 253 | } |
254 | - | |
254 | + | |
255 | 255 | return formatted; |
256 | 256 | }; |
257 | 257 | |
... | ... | @@ -1097,7 +1097,7 @@ export default class TbFlot { |
1097 | 1097 | "axisTickDecimals": { |
1098 | 1098 | "title": "Axis tick number of digits after floating point", |
1099 | 1099 | "type": "number", |
1100 | - "default": 0 | |
1100 | + "default": null | |
1101 | 1101 | }, |
1102 | 1102 | "axisTickSize": { |
1103 | 1103 | "title": "Axis step size between ticks", | ... | ... |