@oliasoft-open-source/charts-library 3.6.9 → 3.6.10

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.
package/dist/index.js CHANGED
@@ -39274,7 +39274,6 @@ const getBarChartAxis = ({
39274
39274
  } : {};
39275
39275
  const ticks = {
39276
39276
  ...stepSize,
39277
- callback: ticksFormattingCallback,
39278
39277
  includeBounds: false,
39279
39278
  //OW-10088 disable irregular axis ticks
39280
39279
  ...ticksConfigFromProps,
@@ -39282,6 +39281,9 @@ const getBarChartAxis = ({
39282
39281
  size: 14
39283
39282
  }
39284
39283
  };
39284
+ if ((additionalAxesOptions == null ? void 0 : additionalAxesOptions.chartScaleType) === ScaleType.Logarithmic) {
39285
+ ticks.callback = ticksFormattingCallback;
39286
+ }
39285
39287
  return ticks;
39286
39288
  };
39287
39289
  return {