scichart 3.2.543 → 3.2.555
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/Charting/ChartModifiers/DataPointSelectionModifier.js +1 -0
- package/Charting/ChartModifiers/ModifierMouseArgs.d.ts +7 -0
- package/Charting/ChartModifiers/ModifierMouseArgs.js +6 -0
- package/Charting/Model/BaseDataSeries.d.ts +11 -0
- package/Charting/Model/BaseDataSeries.js +35 -3
- package/Charting/Model/BaseHeatmapDataSeries.d.ts +2 -0
- package/Charting/Model/BaseHeatmapDataSeries.js +4 -0
- package/Charting/Model/IDataSeries.d.ts +4 -0
- package/Charting/Model/IPaletteProvider.js +1 -1
- package/Charting/Visuals/RenderableSeries/DataLabels/DataLabelState.js +2 -14
- package/Charting/Visuals/RenderableSeries/DrawingProviders/OhlcSeriesDrawingProvider.js +3 -2
- package/Charting/Visuals/RenderableSeries/HitTest/BandSeriesHitTestProvider.js +4 -4
- package/Charting/Visuals/RenderableSeries/HitTest/BaseHitTestProvider.js +2 -2
- package/Charting/Visuals/RenderableSeries/HitTest/ImpulseSeriesHitTestProvider.js +1 -1
- package/Charting/Visuals/RenderableSeries/HitTest/LineSeriesHitTestProvider.js +2 -2
- package/Charting/Visuals/RenderableSeries/HitTest/StackedMountainSeriesHitTestProvider.js +1 -1
- package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.d.ts +3 -3
- package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.js +47 -40
- package/Charting/Visuals/SciChartSurfaceBase.d.ts +1 -1
- package/Charting/Visuals/SciChartSurfaceBase.js +1 -1
- package/Charting3D/Visuals/SciChart3DSurface.d.ts +10 -0
- package/Charting3D/Visuals/SciChart3DSurface.js +14 -0
- package/Core/BuildStamp.d.ts +1 -1
- package/Core/BuildStamp.js +2 -2
- package/Core/Mouse/MouseManager.js +14 -1
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.wasm +0 -0
- package/index.d.ts +1 -0
- package/index.dev.js +147 -73
- package/index.js +5 -3
- package/index.min.js +1 -1
- package/package.json +1 -1
- package/types/SearchMode.d.ts +7 -0
- package/types/SearchMode.js +19 -1
- package/types/TSciChart.d.ts +2 -1
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
2
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
14
|
exports.MouseManager = void 0;
|
|
4
15
|
var ModifierMouseArgs_1 = require("../../Charting/ChartModifiers/ModifierMouseArgs");
|
|
@@ -542,6 +553,7 @@ var MouseManager = /** @class */ (function () {
|
|
|
542
553
|
});
|
|
543
554
|
subCharts === null || subCharts === void 0 ? void 0 : subCharts.forEach(function (scs) {
|
|
544
555
|
var subEventType = eventType;
|
|
556
|
+
var isActiveSubChartEvent = true;
|
|
545
557
|
if (scs.mouseManager.isOver) {
|
|
546
558
|
if (scs !== currentActiveSubChart) {
|
|
547
559
|
scs.mouseManager.isOver = false;
|
|
@@ -570,11 +582,12 @@ var MouseManager = /** @class */ (function () {
|
|
|
570
582
|
if (![EMouseEventType.Cancel, EMouseEventType.Up, EMouseEventType.Move].includes(subEventType)) {
|
|
571
583
|
subEventType = undefined;
|
|
572
584
|
}
|
|
585
|
+
isActiveSubChartEvent = false;
|
|
573
586
|
}
|
|
574
587
|
}
|
|
575
588
|
if (subEventType !== undefined) {
|
|
576
589
|
var masterData = _this.getMasterData(currentActiveSubChart, args);
|
|
577
|
-
_this.processSubChartEvent(subEventType, scs, args, subCharts, masterData);
|
|
590
|
+
_this.processSubChartEvent(subEventType, scs, __assign(__assign({}, args), { isActiveSubChartEvent: isActiveSubChartEvent }), subCharts, masterData);
|
|
578
591
|
}
|
|
579
592
|
});
|
|
580
593
|
};
|