diff --git a/packages/core/src/components/axes/axis.ts b/packages/core/src/components/axes/axis.ts index 0665ae9e14..02ebccae53 100644 --- a/packages/core/src/components/axes/axis.ts +++ b/packages/core/src/components/axes/axis.ts @@ -133,7 +133,7 @@ export class Axis extends Component { // Remove labels on the edges // If there are more than 2 labels to show - if (Tools.getProperty(options, "timeScale", "addSpaceOnEdges") && tickValues.length > 2) { + if (tickValues.length > 2) { tickValues.splice(tickValues.length - 1, 1); tickValues.splice(0, 1); }