igniteui-webcomponents-charts 4.3.0 → 4.3.2
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/License +7 -7
- package/README.md +7 -13
- package/bundles/igniteui-webcomponents-charts.umd.js +14461 -14429
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/DataChartToolbarProvider.js +6 -4
- package/esm2015/lib/SortingTrendLineManager.js +4 -4
- package/esm2015/lib/StackedSeriesCreatedEventArgs_combined.js +232 -218
- package/esm2015/lib/igc-financial-chart-module.js +2 -2
- package/esm2015/lib/igc-stacked-fragment-series-component.js +75 -75
- package/esm5/lib/DataChartToolbarProvider.js +6 -4
- package/esm5/lib/SortingTrendLineManager.js +4 -4
- package/esm5/lib/StackedSeriesCreatedEventArgs_combined.js +521 -491
- package/esm5/lib/igc-financial-chart-module.js +2 -2
- package/esm5/lib/igc-stacked-fragment-series-component.js +75 -75
- package/fesm2015/igniteui-webcomponents-charts.js +12847 -12831
- package/fesm5/igniteui-webcomponents-charts.js +13962 -13930
- package/lib/StackedSeriesCreatedEventArgs_combined.d.ts +59 -58
- package/package.json +3 -2
|
@@ -4,7 +4,6 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
-
import { IgcFinancialChartCoreModule } from './igc-financial-chart-core-module';
|
|
8
7
|
import { IgcLineSeriesModule } from './igc-line-series-module';
|
|
9
8
|
import { IgcAreaSeriesModule } from './igc-area-series-module';
|
|
10
9
|
import { IgcColumnSeriesModule } from './igc-column-series-module';
|
|
@@ -33,11 +32,11 @@ import { IgcNumberAbbreviatorModule } from './igc-number-abbreviator-module';
|
|
|
33
32
|
import { IgcDataChartInteractivityModule } from './igc-data-chart-interactivity-module';
|
|
34
33
|
import { IgcDataChartAnnotationModule } from './igc-data-chart-annotation-module';
|
|
35
34
|
import { IgcFinancialLegendModule } from './igc-financial-legend-module';
|
|
35
|
+
import { IgcFinancialChartCoreModule } from './igc-financial-chart-core-module';
|
|
36
36
|
var IgcFinancialChartModule = /** @class */ /*@__PURE__*/ (function () {
|
|
37
37
|
function IgcFinancialChartModule() {
|
|
38
38
|
}
|
|
39
39
|
IgcFinancialChartModule.register = function () {
|
|
40
|
-
IgcFinancialChartCoreModule.register();
|
|
41
40
|
IgcLineSeriesModule.register();
|
|
42
41
|
IgcAreaSeriesModule.register();
|
|
43
42
|
IgcColumnSeriesModule.register();
|
|
@@ -66,6 +65,7 @@ var IgcFinancialChartModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
66
65
|
IgcDataChartInteractivityModule.register();
|
|
67
66
|
IgcDataChartAnnotationModule.register();
|
|
68
67
|
IgcFinancialLegendModule.register();
|
|
68
|
+
IgcFinancialChartCoreModule.register();
|
|
69
69
|
};
|
|
70
70
|
return IgcFinancialChartModule;
|
|
71
71
|
}());
|
|
@@ -163,11 +163,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
163
163
|
* Gets or sets the brush of the stacked fragment.
|
|
164
164
|
*/
|
|
165
165
|
get: function () {
|
|
166
|
-
return brushToString(this.i.
|
|
166
|
+
return brushToString(this.i.kc);
|
|
167
167
|
},
|
|
168
168
|
set: function (v) {
|
|
169
|
-
this.i.
|
|
170
|
-
this._a("brush", brushToString(this.i.
|
|
169
|
+
this.i.kc = stringToBrush(v);
|
|
170
|
+
this._a("brush", brushToString(this.i.kc));
|
|
171
171
|
},
|
|
172
172
|
enumerable: false,
|
|
173
173
|
configurable: true
|
|
@@ -177,11 +177,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
177
177
|
* Gets the actual brush used by the series.
|
|
178
178
|
*/
|
|
179
179
|
get: function () {
|
|
180
|
-
return brushToString(this.i.
|
|
180
|
+
return brushToString(this.i.j7);
|
|
181
181
|
},
|
|
182
182
|
set: function (v) {
|
|
183
|
-
this.i.
|
|
184
|
-
this._a("actualBrush", brushToString(this.i.
|
|
183
|
+
this.i.j7 = stringToBrush(v);
|
|
184
|
+
this._a("actualBrush", brushToString(this.i.j7));
|
|
185
185
|
},
|
|
186
186
|
enumerable: false,
|
|
187
187
|
configurable: true
|
|
@@ -192,11 +192,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
192
192
|
* is used to outline the current series object.
|
|
193
193
|
*/
|
|
194
194
|
get: function () {
|
|
195
|
-
return fromDoubleCollection(this.i.
|
|
195
|
+
return fromDoubleCollection(this.i.kl);
|
|
196
196
|
},
|
|
197
197
|
set: function (v) {
|
|
198
|
-
this.i.
|
|
199
|
-
this._a("dashArray", doubleCollectionToString(this.i.
|
|
198
|
+
this.i.kl = toDoubleCollection(v);
|
|
199
|
+
this._a("dashArray", doubleCollectionToString(this.i.kl));
|
|
200
200
|
},
|
|
201
201
|
enumerable: false,
|
|
202
202
|
configurable: true
|
|
@@ -264,11 +264,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
264
264
|
* Gets or sets the drop shadow color.
|
|
265
265
|
*/
|
|
266
266
|
get: function () {
|
|
267
|
-
return colorToString(this.i.
|
|
267
|
+
return colorToString(this.i.kj);
|
|
268
268
|
},
|
|
269
269
|
set: function (v) {
|
|
270
|
-
this.i.
|
|
271
|
-
this._a("shadowColor", colorToString(this.i.
|
|
270
|
+
this.i.kj = stringToColor(v);
|
|
271
|
+
this._a("shadowColor", colorToString(this.i.kj));
|
|
272
272
|
},
|
|
273
273
|
enumerable: false,
|
|
274
274
|
configurable: true
|
|
@@ -278,11 +278,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
278
278
|
* Gets actual the drop shadow color used by the series.
|
|
279
279
|
*/
|
|
280
280
|
get: function () {
|
|
281
|
-
return colorToString(this.i.
|
|
281
|
+
return colorToString(this.i.ki);
|
|
282
282
|
},
|
|
283
283
|
set: function (v) {
|
|
284
|
-
this.i.
|
|
285
|
-
this._a("actualShadowColor", colorToString(this.i.
|
|
284
|
+
this.i.ki = stringToColor(v);
|
|
285
|
+
this._a("actualShadowColor", colorToString(this.i.ki));
|
|
286
286
|
},
|
|
287
287
|
enumerable: false,
|
|
288
288
|
configurable: true
|
|
@@ -379,11 +379,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
379
379
|
* Not every series type has a line at which it would be appropriate to display an end cap, so this property does not affect every series type. LineSeries, for example, is affected by EndCap, but ColumnSeries is not.
|
|
380
380
|
*/
|
|
381
381
|
get: function () {
|
|
382
|
-
return this.i.
|
|
382
|
+
return this.i.kp;
|
|
383
383
|
},
|
|
384
384
|
set: function (v) {
|
|
385
|
-
this.i.
|
|
386
|
-
this._a("lineCap", enumToString(PenLineCap_$type, this.i.
|
|
385
|
+
this.i.kp = ensureEnum(PenLineCap_$type, v);
|
|
386
|
+
this._a("lineCap", enumToString(PenLineCap_$type, this.i.kp));
|
|
387
387
|
},
|
|
388
388
|
enumerable: false,
|
|
389
389
|
configurable: true
|
|
@@ -393,11 +393,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
393
393
|
* Gets the actual end cap used by the series.
|
|
394
394
|
*/
|
|
395
395
|
get: function () {
|
|
396
|
-
return this.i.
|
|
396
|
+
return this.i.kn;
|
|
397
397
|
},
|
|
398
398
|
set: function (v) {
|
|
399
|
-
this.i.
|
|
400
|
-
this._a("actualLineCap", enumToString(PenLineCap_$type, this.i.
|
|
399
|
+
this.i.kn = ensureEnum(PenLineCap_$type, v);
|
|
400
|
+
this._a("actualLineCap", enumToString(PenLineCap_$type, this.i.kn));
|
|
401
401
|
},
|
|
402
402
|
enumerable: false,
|
|
403
403
|
configurable: true
|
|
@@ -409,10 +409,10 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
409
409
|
* the series object itself.
|
|
410
410
|
*/
|
|
411
411
|
get: function () {
|
|
412
|
-
return this.i.
|
|
412
|
+
return this.i.g9;
|
|
413
413
|
},
|
|
414
414
|
set: function (v) {
|
|
415
|
-
this.i.
|
|
415
|
+
this.i.g9 = v;
|
|
416
416
|
},
|
|
417
417
|
enumerable: false,
|
|
418
418
|
configurable: true
|
|
@@ -422,10 +422,10 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
422
422
|
* Gets the actual legend item badge template used by the series.
|
|
423
423
|
*/
|
|
424
424
|
get: function () {
|
|
425
|
-
return this.i.
|
|
425
|
+
return this.i.g6;
|
|
426
426
|
},
|
|
427
427
|
set: function (v) {
|
|
428
|
-
this.i.
|
|
428
|
+
this.i.g6 = v;
|
|
429
429
|
},
|
|
430
430
|
enumerable: false,
|
|
431
431
|
configurable: true
|
|
@@ -437,10 +437,10 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
437
437
|
* the series object itself.
|
|
438
438
|
*/
|
|
439
439
|
get: function () {
|
|
440
|
-
return this.i.
|
|
440
|
+
return this.i.ha;
|
|
441
441
|
},
|
|
442
442
|
set: function (v) {
|
|
443
|
-
this.i.
|
|
443
|
+
this.i.ha = v;
|
|
444
444
|
},
|
|
445
445
|
enumerable: false,
|
|
446
446
|
configurable: true
|
|
@@ -450,10 +450,10 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
450
450
|
* Gets the actual legend item template used by the series.
|
|
451
451
|
*/
|
|
452
452
|
get: function () {
|
|
453
|
-
return this.i.
|
|
453
|
+
return this.i.g7;
|
|
454
454
|
},
|
|
455
455
|
set: function (v) {
|
|
456
|
-
this.i.
|
|
456
|
+
this.i.g7 = v;
|
|
457
457
|
},
|
|
458
458
|
enumerable: false,
|
|
459
459
|
configurable: true
|
|
@@ -463,11 +463,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
463
463
|
* Gets or sets the legend item visibility for the current series object.
|
|
464
464
|
*/
|
|
465
465
|
get: function () {
|
|
466
|
-
return this.i.
|
|
466
|
+
return this.i.k7;
|
|
467
467
|
},
|
|
468
468
|
set: function (v) {
|
|
469
|
-
this.i.
|
|
470
|
-
this._a("legendItemVisibility", enumToString(Visibility_$type, this.i.
|
|
469
|
+
this.i.k7 = ensureEnum(Visibility_$type, v);
|
|
470
|
+
this._a("legendItemVisibility", enumToString(Visibility_$type, this.i.k7));
|
|
471
471
|
},
|
|
472
472
|
enumerable: false,
|
|
473
473
|
configurable: true
|
|
@@ -477,11 +477,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
477
477
|
* Gets the actual visibility of the legend items in the series.
|
|
478
478
|
*/
|
|
479
479
|
get: function () {
|
|
480
|
-
return this.i.
|
|
480
|
+
return this.i.k5;
|
|
481
481
|
},
|
|
482
482
|
set: function (v) {
|
|
483
|
-
this.i.
|
|
484
|
-
this._a("actualLegendItemVisibility", enumToString(Visibility_$type, this.i.
|
|
483
|
+
this.i.k5 = ensureEnum(Visibility_$type, v);
|
|
484
|
+
this._a("actualLegendItemVisibility", enumToString(Visibility_$type, this.i.k5));
|
|
485
485
|
},
|
|
486
486
|
enumerable: false,
|
|
487
487
|
configurable: true
|
|
@@ -549,11 +549,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
549
549
|
* Gets or sets the brush that specifies how the current series object's marker interiors are painted.
|
|
550
550
|
*/
|
|
551
551
|
get: function () {
|
|
552
|
-
return brushToString(this.i.
|
|
552
|
+
return brushToString(this.i.kd);
|
|
553
553
|
},
|
|
554
554
|
set: function (v) {
|
|
555
|
-
this.i.
|
|
556
|
-
this._a("markerBrush", brushToString(this.i.
|
|
555
|
+
this.i.kd = stringToBrush(v);
|
|
556
|
+
this._a("markerBrush", brushToString(this.i.kd));
|
|
557
557
|
},
|
|
558
558
|
enumerable: false,
|
|
559
559
|
configurable: true
|
|
@@ -563,11 +563,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
563
563
|
* Gets the actual marker brush of the series.
|
|
564
564
|
*/
|
|
565
565
|
get: function () {
|
|
566
|
-
return brushToString(this.i.
|
|
566
|
+
return brushToString(this.i.j8);
|
|
567
567
|
},
|
|
568
568
|
set: function (v) {
|
|
569
|
-
this.i.
|
|
570
|
-
this._a("actualMarkerBrush", brushToString(this.i.
|
|
569
|
+
this.i.j8 = stringToBrush(v);
|
|
570
|
+
this._a("actualMarkerBrush", brushToString(this.i.j8));
|
|
571
571
|
},
|
|
572
572
|
enumerable: false,
|
|
573
573
|
configurable: true
|
|
@@ -577,11 +577,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
577
577
|
* Gets or sets the brush that specifies how the current series object's marker outlines are painted.
|
|
578
578
|
*/
|
|
579
579
|
get: function () {
|
|
580
|
-
return brushToString(this.i.
|
|
580
|
+
return brushToString(this.i.ke);
|
|
581
581
|
},
|
|
582
582
|
set: function (v) {
|
|
583
|
-
this.i.
|
|
584
|
-
this._a("markerOutline", brushToString(this.i.
|
|
583
|
+
this.i.ke = stringToBrush(v);
|
|
584
|
+
this._a("markerOutline", brushToString(this.i.ke));
|
|
585
585
|
},
|
|
586
586
|
enumerable: false,
|
|
587
587
|
configurable: true
|
|
@@ -591,11 +591,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
591
591
|
* Gets the actual marker outline of the series.
|
|
592
592
|
*/
|
|
593
593
|
get: function () {
|
|
594
|
-
return brushToString(this.i.
|
|
594
|
+
return brushToString(this.i.j9);
|
|
595
595
|
},
|
|
596
596
|
set: function (v) {
|
|
597
|
-
this.i.
|
|
598
|
-
this._a("actualMarkerOutline", brushToString(this.i.
|
|
597
|
+
this.i.j9 = stringToBrush(v);
|
|
598
|
+
this._a("actualMarkerOutline", brushToString(this.i.j9));
|
|
599
599
|
},
|
|
600
600
|
enumerable: false,
|
|
601
601
|
configurable: true
|
|
@@ -605,10 +605,10 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
605
605
|
* Gets or sets the MarkerTemplate for the current series object.
|
|
606
606
|
*/
|
|
607
607
|
get: function () {
|
|
608
|
-
return this.i.
|
|
608
|
+
return this.i.hb;
|
|
609
609
|
},
|
|
610
610
|
set: function (v) {
|
|
611
|
-
this.i.
|
|
611
|
+
this.i.hb = v;
|
|
612
612
|
},
|
|
613
613
|
enumerable: false,
|
|
614
614
|
configurable: true
|
|
@@ -618,10 +618,10 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
618
618
|
* Gets the actual marker template used by the series.
|
|
619
619
|
*/
|
|
620
620
|
get: function () {
|
|
621
|
-
return this.i.
|
|
621
|
+
return this.i.g8;
|
|
622
622
|
},
|
|
623
623
|
set: function (v) {
|
|
624
|
-
this.i.
|
|
624
|
+
this.i.g8 = v;
|
|
625
625
|
},
|
|
626
626
|
enumerable: false,
|
|
627
627
|
configurable: true
|
|
@@ -758,11 +758,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
758
758
|
* Some series types, such as LineSeries, do not display outlines. Therefore, this property does not affect some charts.
|
|
759
759
|
*/
|
|
760
760
|
get: function () {
|
|
761
|
-
return brushToString(this.i.
|
|
761
|
+
return brushToString(this.i.kg);
|
|
762
762
|
},
|
|
763
763
|
set: function (v) {
|
|
764
|
-
this.i.
|
|
765
|
-
this._a("outline", brushToString(this.i.
|
|
764
|
+
this.i.kg = stringToBrush(v);
|
|
765
|
+
this._a("outline", brushToString(this.i.kg));
|
|
766
766
|
},
|
|
767
767
|
enumerable: false,
|
|
768
768
|
configurable: true
|
|
@@ -772,11 +772,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
772
772
|
* Gets the series outline.
|
|
773
773
|
*/
|
|
774
774
|
get: function () {
|
|
775
|
-
return brushToString(this.i.
|
|
775
|
+
return brushToString(this.i.kb);
|
|
776
776
|
},
|
|
777
777
|
set: function (v) {
|
|
778
|
-
this.i.
|
|
779
|
-
this._a("actualOutline", brushToString(this.i.
|
|
778
|
+
this.i.kb = stringToBrush(v);
|
|
779
|
+
this._a("actualOutline", brushToString(this.i.kb));
|
|
780
780
|
},
|
|
781
781
|
enumerable: false,
|
|
782
782
|
configurable: true
|
|
@@ -1312,11 +1312,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1312
1312
|
* Gets or sets the Visibility of the stacked fragment.
|
|
1313
1313
|
*/
|
|
1314
1314
|
get: function () {
|
|
1315
|
-
return this.i.
|
|
1315
|
+
return this.i.k8;
|
|
1316
1316
|
},
|
|
1317
1317
|
set: function (v) {
|
|
1318
|
-
this.i.
|
|
1319
|
-
this._a("visibility", enumToString(Visibility_$type, this.i.
|
|
1318
|
+
this.i.k8 = ensureEnum(Visibility_$type, v);
|
|
1319
|
+
this._a("visibility", enumToString(Visibility_$type, this.i.k8));
|
|
1320
1320
|
},
|
|
1321
1321
|
enumerable: false,
|
|
1322
1322
|
configurable: true
|
|
@@ -1326,11 +1326,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1326
1326
|
* Gets the actual visibility of the stacked fragment.
|
|
1327
1327
|
*/
|
|
1328
1328
|
get: function () {
|
|
1329
|
-
return this.i.
|
|
1329
|
+
return this.i.k6;
|
|
1330
1330
|
},
|
|
1331
1331
|
set: function (v) {
|
|
1332
|
-
this.i.
|
|
1333
|
-
this._a("actualVisibility", enumToString(Visibility_$type, this.i.
|
|
1332
|
+
this.i.k6 = ensureEnum(Visibility_$type, v);
|
|
1333
|
+
this._a("actualVisibility", enumToString(Visibility_$type, this.i.k6));
|
|
1334
1334
|
},
|
|
1335
1335
|
enumerable: false,
|
|
1336
1336
|
configurable: true
|
|
@@ -1340,11 +1340,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1340
1340
|
* Gets the resolved brush used between the local series and the parent series.
|
|
1341
1341
|
*/
|
|
1342
1342
|
get: function () {
|
|
1343
|
-
return brushToString(this.i.
|
|
1343
|
+
return brushToString(this.i.kh);
|
|
1344
1344
|
},
|
|
1345
1345
|
set: function (v) {
|
|
1346
|
-
this.i.
|
|
1347
|
-
this._a("parentOrLocalBrush", brushToString(this.i.
|
|
1346
|
+
this.i.kh = stringToBrush(v);
|
|
1347
|
+
this._a("parentOrLocalBrush", brushToString(this.i.kh));
|
|
1348
1348
|
},
|
|
1349
1349
|
enumerable: false,
|
|
1350
1350
|
configurable: true
|
|
@@ -1444,7 +1444,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1444
1444
|
return (iv);
|
|
1445
1445
|
};
|
|
1446
1446
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValuePosition = function (world, useInterpolation, skipUnknowns) {
|
|
1447
|
-
var iv = this.i.
|
|
1447
|
+
var iv = this.i.kv(toPoint(world), useInterpolation, skipUnknowns);
|
|
1448
1448
|
return fromPoint(iv);
|
|
1449
1449
|
};
|
|
1450
1450
|
/**
|
|
@@ -1453,7 +1453,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1453
1453
|
* @param world * The world coordinate for which to get a value bounding box for
|
|
1454
1454
|
*/
|
|
1455
1455
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValueBoundingBox = function (world) {
|
|
1456
|
-
var iv = this.i.
|
|
1456
|
+
var iv = this.i.kz(toPoint(world));
|
|
1457
1457
|
return fromRect(iv);
|
|
1458
1458
|
};
|
|
1459
1459
|
/**
|
|
@@ -1462,7 +1462,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1462
1462
|
* @param world * The world coordinates for which to get a value marker bounding box for
|
|
1463
1463
|
*/
|
|
1464
1464
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValueMarkerBoundingBox = function (world) {
|
|
1465
|
-
var iv = this.i.
|
|
1465
|
+
var iv = this.i.k1(toPoint(world));
|
|
1466
1466
|
return fromRect(iv);
|
|
1467
1467
|
};
|
|
1468
1468
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesHighValue = function (world, useInterpolation, skipUnknowns) {
|
|
@@ -1470,7 +1470,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1470
1470
|
return (iv);
|
|
1471
1471
|
};
|
|
1472
1472
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesHighValuePosition = function (world, useInterpolation, skipUnknowns) {
|
|
1473
|
-
var iv = this.i.
|
|
1473
|
+
var iv = this.i.kr(toPoint(world), useInterpolation, skipUnknowns);
|
|
1474
1474
|
return fromPoint(iv);
|
|
1475
1475
|
};
|
|
1476
1476
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesLowValue = function (world, useInterpolation, skipUnknowns) {
|
|
@@ -1478,11 +1478,11 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1478
1478
|
return (iv);
|
|
1479
1479
|
};
|
|
1480
1480
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesLowValuePosition = function (world, useInterpolation, skipUnknowns) {
|
|
1481
|
-
var iv = this.i.
|
|
1481
|
+
var iv = this.i.kt(toPoint(world), useInterpolation, skipUnknowns);
|
|
1482
1482
|
return fromPoint(iv);
|
|
1483
1483
|
};
|
|
1484
1484
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValuePositionFromSeriesPixel = function (mouse, useInterpolation, skipUnknowns) {
|
|
1485
|
-
var iv = this.i.
|
|
1485
|
+
var iv = this.i.kw(toPoint(mouse), useInterpolation, skipUnknowns);
|
|
1486
1486
|
return fromPoint(iv);
|
|
1487
1487
|
};
|
|
1488
1488
|
IgcStackedFragmentSeriesComponent.prototype.getSeriesValueFromSeriesPixel = function (mouse, useInterpolation, skipUnknowns) {
|
|
@@ -1503,7 +1503,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1503
1503
|
* @param seriesPoint * The pixel location within the plot area of the series.
|
|
1504
1504
|
*/
|
|
1505
1505
|
IgcStackedFragmentSeriesComponent.prototype.toWorldPosition = function (seriesPoint) {
|
|
1506
|
-
var iv = this.i.
|
|
1506
|
+
var iv = this.i.kx(toPoint(seriesPoint));
|
|
1507
1507
|
return fromPoint(iv);
|
|
1508
1508
|
};
|
|
1509
1509
|
/**
|
|
@@ -1512,7 +1512,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1512
1512
|
* @param world * The world position from which to convert.
|
|
1513
1513
|
*/
|
|
1514
1514
|
IgcStackedFragmentSeriesComponent.prototype.fromWorldPosition = function (world) {
|
|
1515
|
-
var iv = this.i.
|
|
1515
|
+
var iv = this.i.kq(toPoint(world));
|
|
1516
1516
|
return fromPoint(iv);
|
|
1517
1517
|
};
|
|
1518
1518
|
/**
|
|
@@ -1529,7 +1529,7 @@ var IgcStackedFragmentSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1529
1529
|
|
|
1530
1530
|
*/
|
|
1531
1531
|
IgcStackedFragmentSeriesComponent.prototype.getEffectiveViewport = function () {
|
|
1532
|
-
var iv = this.i.
|
|
1532
|
+
var iv = this.i.ky();
|
|
1533
1533
|
return fromRect(iv);
|
|
1534
1534
|
};
|
|
1535
1535
|
/**
|