@devexperts/dxcharts-lite 2.2.0 → 2.3.0

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.
Files changed (28) hide show
  1. package/dist/chart/canvas/canvas-bounds-container.d.ts +2 -2
  2. package/dist/chart/canvas/canvas-bounds-container.js +2 -2
  3. package/dist/chart/chart.config.d.ts +17 -4
  4. package/dist/chart/chart.config.js +6 -2
  5. package/dist/chart/components/chart/chart-area-pan.handler.js +10 -5
  6. package/dist/chart/components/cross_tool/cross-tool.model.js +1 -1
  7. package/dist/chart/components/snapshot/snapshot.component.js +1 -0
  8. package/dist/chart/components/volumes/separate-volumes.component.js +2 -1
  9. package/dist/chart/components/volumes/volumes.formatter.d.ts +1 -1
  10. package/dist/chart/components/volumes/volumes.formatter.js +28 -25
  11. package/dist/chart/components/y_axis/y-axis-scale.handler.d.ts +5 -4
  12. package/dist/chart/components/y_axis/y-axis-scale.handler.js +9 -9
  13. package/dist/chart/components/y_axis/y-axis.component.js +1 -0
  14. package/dist/chart/drawers/data-series.drawer.js +1 -1
  15. package/dist/chart/inputlisteners/canvas-input-listener.component.d.ts +9 -0
  16. package/dist/chart/inputlisteners/canvas-input-listener.component.js +38 -1
  17. package/dist/chart/model/scale.model.d.ts +3 -2
  18. package/dist/chart/model/scale.model.js +23 -5
  19. package/dist/chart/model/scaling/constrait.functions.d.ts +1 -1
  20. package/dist/chart/model/scaling/constrait.functions.js +1 -2
  21. package/dist/chart/model/scaling/lock-ratio.model.d.ts +8 -2
  22. package/dist/chart/model/scaling/lock-ratio.model.js +18 -3
  23. package/dist/chart/utils/device/touchpad.utils.d.ts +3 -3
  24. package/dist/chart/utils/device/touchpad.utils.js +3 -5
  25. package/dist/chart/utils/math.utils.d.ts +0 -1
  26. package/dist/chart/utils/math.utils.js +1 -1
  27. package/dist/dxchart.min.js +4 -4
  28. package/package.json +1 -1
@@ -3,7 +3,7 @@
3
3
  * This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
4
4
  * If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5
5
  */
6
- export const MAX_DECIMAL_DIGITS = 14;
6
+ const MAX_DECIMAL_DIGITS = 14;
7
7
  // Array of powers of 10. Used in roundDecimal to walk through mantissa.
8
8
  const POW10 = [];
9
9
  for (let i = 0; i < MAX_DECIMAL_DIGITS + 1; i++) {