We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da3404 commit debeed9Copy full SHA for debeed9
packages/core/src/components/axes/axis.ts
@@ -148,7 +148,7 @@ export class Axis extends Component {
148
149
if (axisOptions.scaleType === ScaleTypes.TIME) {
150
if (Tools.getProperty(options, "timeScale", "addSpaceOnEdges")) {
151
- const timeRangeToExtend = Tools.getProperty(options, "timeScale", "timeRangeToExtend")
+ const timeRangeToExtend = Tools.getProperty(options, "timeScale", "timeRangeToExtend");
152
const startDate = new Date(domain[0]);
153
const endDate = new Date(domain[1]);
154
if (differenceInYears(endDate, startDate) > timeRangeToExtend) {
0 commit comments