@progress/kendo-charts 2.8.1-develop.3 → 2.8.1-develop.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -610,6 +610,10 @@ class DateCategoryAxis extends CategoryAxis {
610
610
 
611
611
  if (range) {
612
612
  if (range.min < totalLimits.min) {
613
+ if (scale < 0 && this.options.justified) {
614
+ const diff = dateDiff(totalLimits.min, range.min);
615
+ range.max = addTicks(range.max, diff);
616
+ }
613
617
  range.min = totalLimits.min;
614
618
  }
615
619
  if (range.max > totalLimits.max) {
@@ -610,6 +610,10 @@ class DateCategoryAxis extends CategoryAxis {
610
610
 
611
611
  if (range) {
612
612
  if (range.min < totalLimits.min) {
613
+ if (scale < 0 && this.options.justified) {
614
+ const diff = dateDiff(totalLimits.min, range.min);
615
+ range.max = addTicks(range.max, diff);
616
+ }
613
617
  range.min = totalLimits.min;
614
618
  }
615
619
  if (range.max > totalLimits.max) {