scichart 3.2.434 → 3.2.442

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 (26) hide show
  1. package/Charting/Visuals/Axis/DeltaCalculator/DateTimeDeltaCalculator.js +15 -1
  2. package/Charting/Visuals/Legend/ManualLegend.d.ts +1 -0
  3. package/Charting/Visuals/Legend/ManualLegend.js +12 -0
  4. package/Charting/Visuals/Legend/SciChartLegendBase.js +0 -8
  5. package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.js +6 -10
  6. package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.d.ts +11 -0
  7. package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.js +26 -10
  8. package/Charting/Visuals/RenderableSeries/DrawingProviders/BubbleSeriesDrawingProvider.js +3 -8
  9. package/Charting/Visuals/RenderableSeries/DrawingProviders/ColumnSeriesDrawingProvider.js +5 -10
  10. package/Charting/Visuals/RenderableSeries/DrawingProviders/LineSeriesDrawingProvider.js +5 -10
  11. package/Charting/Visuals/RenderableSeries/DrawingProviders/MountainSeriesDrawingProvider.js +5 -9
  12. package/Charting/Visuals/RenderableSeries/DrawingProviders/OhlcSeriesDrawingProvider.js +3 -8
  13. package/Charting/Visuals/RenderableSeries/DrawingProviders/PointMarkerDrawingProvider.js +5 -9
  14. package/Charting/Visuals/licenseManager2D.js +7 -2
  15. package/Core/BuildStamp.d.ts +1 -1
  16. package/Core/BuildStamp.js +2 -2
  17. package/Core/OneTimePerformanceWarning.d.ts +1 -1
  18. package/Core/OneTimePerformanceWarning.js +2 -1
  19. package/_wasm/scichart.browser.js +1 -1
  20. package/_wasm/scichart2d.wasm +0 -0
  21. package/_wasm/scichart3d.wasm +0 -0
  22. package/constants/performanceWarnings.d.ts +1 -0
  23. package/constants/performanceWarnings.js +2 -1
  24. package/index.dev.js +95 -85
  25. package/index.min.js +1 -1
  26. package/package.json +1 -1
Binary file
Binary file
@@ -4,4 +4,5 @@ export declare const performanceWarnings: {
4
4
  dataDistributionFlagSortedAscending: OneTimePerformanceWarning;
5
5
  subchartBackgroundNotSimpleColor: OneTimePerformanceWarning;
6
6
  dataLabelsSkippingMany: OneTimePerformanceWarning;
7
+ dateTimeDeltaCalculatorBadDelta: OneTimePerformanceWarning;
7
8
  };
@@ -6,5 +6,6 @@ exports.performanceWarnings = {
6
6
  dataDistributionFlagNaN: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("Data Distribution flag (BaseDataSeries.containsNaN = false) can be applied to improve performance. Read this website article https://www.scichart.com/documentation/js/current/DataResampling.html for more info. To disable this warning set SciChartDefaults.performanceWarnings = false"),
7
7
  dataDistributionFlagSortedAscending: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("Data Distribution flag (BaseDataSeries.isSorted = true) can be applied to improve performance. Read this website article https://www.scichart.com/documentation/js/current/DataResampling.html for more info. To disable this warning set SciChartDefaults.performanceWarnings = false"),
8
8
  subchartBackgroundNotSimpleColor: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("When using isTransparent: false on a SubChart, the background needs to be a simple color, not an html gradient (which the default theme uses). To disable this warning set SciChartDefaults.performanceWarnings = false"),
9
- dataLabelsSkippingMany: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("DataLabelProvider generated many more labels than it could display. To improve performance consider increasing the pointGapThreshold, increasing the skipNumber, or decreasing the pointCountThreshold. To disable this warning set SciChartDefaults.performanceWarnings = false")
9
+ dataLabelsSkippingMany: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("DataLabelProvider generated many more labels than it could display. To improve performance consider increasing the pointGapThreshold, increasing the skipNumber, or decreasing the pointCountThreshold. To disable this warning set SciChartDefaults.performanceWarnings = false"),
10
+ dateTimeDeltaCalculatorBadDelta: new OneTimePerformanceWarning_1.OneTimePerformanceWarning("The DateTimeDeltaCalculator could not find a suitable delta given the current settings. \n Either increase axis.maxAutoTicks, set axis.deltaCalculator.minTicks less than maxAutoTicks / 3, or set possibleDeltas to an array containing more closely spaced values.\n To disable this warning set SciChartDefaults.performanceWarnings = false")
10
11
  };