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,9 +32,9 @@ 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
|
export class IgcFinancialChartModule {
|
|
37
37
|
static register() {
|
|
38
|
-
IgcFinancialChartCoreModule.register();
|
|
39
38
|
IgcLineSeriesModule.register();
|
|
40
39
|
IgcAreaSeriesModule.register();
|
|
41
40
|
IgcColumnSeriesModule.register();
|
|
@@ -64,5 +63,6 @@ export class IgcFinancialChartModule {
|
|
|
64
63
|
IgcDataChartInteractivityModule.register();
|
|
65
64
|
IgcDataChartAnnotationModule.register();
|
|
66
65
|
IgcFinancialLegendModule.register();
|
|
66
|
+
IgcFinancialChartCoreModule.register();
|
|
67
67
|
}
|
|
68
68
|
}
|
|
@@ -148,32 +148,32 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
148
148
|
* Gets or sets the brush of the stacked fragment.
|
|
149
149
|
*/
|
|
150
150
|
get brush() {
|
|
151
|
-
return brushToString(this.i.
|
|
151
|
+
return brushToString(this.i.kc);
|
|
152
152
|
}
|
|
153
153
|
set brush(v) {
|
|
154
|
-
this.i.
|
|
155
|
-
this._a("brush", brushToString(this.i.
|
|
154
|
+
this.i.kc = stringToBrush(v);
|
|
155
|
+
this._a("brush", brushToString(this.i.kc));
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* Gets the actual brush used by the series.
|
|
159
159
|
*/
|
|
160
160
|
get actualBrush() {
|
|
161
|
-
return brushToString(this.i.
|
|
161
|
+
return brushToString(this.i.j7);
|
|
162
162
|
}
|
|
163
163
|
set actualBrush(v) {
|
|
164
|
-
this.i.
|
|
165
|
-
this._a("actualBrush", brushToString(this.i.
|
|
164
|
+
this.i.j7 = stringToBrush(v);
|
|
165
|
+
this._a("actualBrush", brushToString(this.i.j7));
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* Gets or sets a collection of Double values that indicate the pattern of dashes and gaps that
|
|
169
169
|
* is used to outline the current series object.
|
|
170
170
|
*/
|
|
171
171
|
get dashArray() {
|
|
172
|
-
return fromDoubleCollection(this.i.
|
|
172
|
+
return fromDoubleCollection(this.i.kl);
|
|
173
173
|
}
|
|
174
174
|
set dashArray(v) {
|
|
175
|
-
this.i.
|
|
176
|
-
this._a("dashArray", doubleCollectionToString(this.i.
|
|
175
|
+
this.i.kl = toDoubleCollection(v);
|
|
176
|
+
this._a("dashArray", doubleCollectionToString(this.i.kl));
|
|
177
177
|
}
|
|
178
178
|
/**
|
|
179
179
|
* Gets or sets whether drop shadow should be enabled for this series.
|
|
@@ -221,21 +221,21 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
221
221
|
* Gets or sets the drop shadow color.
|
|
222
222
|
*/
|
|
223
223
|
get shadowColor() {
|
|
224
|
-
return colorToString(this.i.
|
|
224
|
+
return colorToString(this.i.kj);
|
|
225
225
|
}
|
|
226
226
|
set shadowColor(v) {
|
|
227
|
-
this.i.
|
|
228
|
-
this._a("shadowColor", colorToString(this.i.
|
|
227
|
+
this.i.kj = stringToColor(v);
|
|
228
|
+
this._a("shadowColor", colorToString(this.i.kj));
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
231
231
|
* Gets actual the drop shadow color used by the series.
|
|
232
232
|
*/
|
|
233
233
|
get actualShadowColor() {
|
|
234
|
-
return colorToString(this.i.
|
|
234
|
+
return colorToString(this.i.ki);
|
|
235
235
|
}
|
|
236
236
|
set actualShadowColor(v) {
|
|
237
|
-
this.i.
|
|
238
|
-
this._a("actualShadowColor", colorToString(this.i.
|
|
237
|
+
this.i.ki = stringToColor(v);
|
|
238
|
+
this._a("actualShadowColor", colorToString(this.i.ki));
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
241
|
* Gets or sets whether drop shadow is applied to the whole StackedFragmentSeries visual or to each of the individual shapes forming the StackedFragmentSeries.
|
|
@@ -304,21 +304,21 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
304
304
|
* 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.
|
|
305
305
|
*/
|
|
306
306
|
get lineCap() {
|
|
307
|
-
return this.i.
|
|
307
|
+
return this.i.kp;
|
|
308
308
|
}
|
|
309
309
|
set lineCap(v) {
|
|
310
|
-
this.i.
|
|
311
|
-
this._a("lineCap", enumToString(PenLineCap_$type, this.i.
|
|
310
|
+
this.i.kp = ensureEnum(PenLineCap_$type, v);
|
|
311
|
+
this._a("lineCap", enumToString(PenLineCap_$type, this.i.kp));
|
|
312
312
|
}
|
|
313
313
|
/**
|
|
314
314
|
* Gets the actual end cap used by the series.
|
|
315
315
|
*/
|
|
316
316
|
get actualLineCap() {
|
|
317
|
-
return this.i.
|
|
317
|
+
return this.i.kn;
|
|
318
318
|
}
|
|
319
319
|
set actualLineCap(v) {
|
|
320
|
-
this.i.
|
|
321
|
-
this._a("actualLineCap", enumToString(PenLineCap_$type, this.i.
|
|
320
|
+
this.i.kn = ensureEnum(PenLineCap_$type, v);
|
|
321
|
+
this._a("actualLineCap", enumToString(PenLineCap_$type, this.i.kn));
|
|
322
322
|
}
|
|
323
323
|
/**
|
|
324
324
|
* Gets or sets the LegendItemBadgeTemplate property.
|
|
@@ -326,19 +326,19 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
326
326
|
* the series object itself.
|
|
327
327
|
*/
|
|
328
328
|
get legendItemBadgeTemplate() {
|
|
329
|
-
return this.i.
|
|
329
|
+
return this.i.g9;
|
|
330
330
|
}
|
|
331
331
|
set legendItemBadgeTemplate(v) {
|
|
332
|
-
this.i.
|
|
332
|
+
this.i.g9 = v;
|
|
333
333
|
}
|
|
334
334
|
/**
|
|
335
335
|
* Gets the actual legend item badge template used by the series.
|
|
336
336
|
*/
|
|
337
337
|
get actualLegendItemBadgeTemplate() {
|
|
338
|
-
return this.i.
|
|
338
|
+
return this.i.g6;
|
|
339
339
|
}
|
|
340
340
|
set actualLegendItemBadgeTemplate(v) {
|
|
341
|
-
this.i.
|
|
341
|
+
this.i.g6 = v;
|
|
342
342
|
}
|
|
343
343
|
/**
|
|
344
344
|
* Gets or sets the LegendItemTemplate property.
|
|
@@ -346,39 +346,39 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
346
346
|
* the series object itself.
|
|
347
347
|
*/
|
|
348
348
|
get legendItemTemplate() {
|
|
349
|
-
return this.i.
|
|
349
|
+
return this.i.ha;
|
|
350
350
|
}
|
|
351
351
|
set legendItemTemplate(v) {
|
|
352
|
-
this.i.
|
|
352
|
+
this.i.ha = v;
|
|
353
353
|
}
|
|
354
354
|
/**
|
|
355
355
|
* Gets the actual legend item template used by the series.
|
|
356
356
|
*/
|
|
357
357
|
get actualLegendItemTemplate() {
|
|
358
|
-
return this.i.
|
|
358
|
+
return this.i.g7;
|
|
359
359
|
}
|
|
360
360
|
set actualLegendItemTemplate(v) {
|
|
361
|
-
this.i.
|
|
361
|
+
this.i.g7 = v;
|
|
362
362
|
}
|
|
363
363
|
/**
|
|
364
364
|
* Gets or sets the legend item visibility for the current series object.
|
|
365
365
|
*/
|
|
366
366
|
get legendItemVisibility() {
|
|
367
|
-
return this.i.
|
|
367
|
+
return this.i.k7;
|
|
368
368
|
}
|
|
369
369
|
set legendItemVisibility(v) {
|
|
370
|
-
this.i.
|
|
371
|
-
this._a("legendItemVisibility", enumToString(Visibility_$type, this.i.
|
|
370
|
+
this.i.k7 = ensureEnum(Visibility_$type, v);
|
|
371
|
+
this._a("legendItemVisibility", enumToString(Visibility_$type, this.i.k7));
|
|
372
372
|
}
|
|
373
373
|
/**
|
|
374
374
|
* Gets the actual visibility of the legend items in the series.
|
|
375
375
|
*/
|
|
376
376
|
get actualLegendItemVisibility() {
|
|
377
|
-
return this.i.
|
|
377
|
+
return this.i.k5;
|
|
378
378
|
}
|
|
379
379
|
set actualLegendItemVisibility(v) {
|
|
380
|
-
this.i.
|
|
381
|
-
this._a("actualLegendItemVisibility", enumToString(Visibility_$type, this.i.
|
|
380
|
+
this.i.k5 = ensureEnum(Visibility_$type, v);
|
|
381
|
+
this._a("actualLegendItemVisibility", enumToString(Visibility_$type, this.i.k5));
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
384
|
* Gets or sets the type of legend badge representing the current series in a legend.
|
|
@@ -426,59 +426,59 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
426
426
|
* Gets or sets the brush that specifies how the current series object's marker interiors are painted.
|
|
427
427
|
*/
|
|
428
428
|
get markerBrush() {
|
|
429
|
-
return brushToString(this.i.
|
|
429
|
+
return brushToString(this.i.kd);
|
|
430
430
|
}
|
|
431
431
|
set markerBrush(v) {
|
|
432
|
-
this.i.
|
|
433
|
-
this._a("markerBrush", brushToString(this.i.
|
|
432
|
+
this.i.kd = stringToBrush(v);
|
|
433
|
+
this._a("markerBrush", brushToString(this.i.kd));
|
|
434
434
|
}
|
|
435
435
|
/**
|
|
436
436
|
* Gets the actual marker brush of the series.
|
|
437
437
|
*/
|
|
438
438
|
get actualMarkerBrush() {
|
|
439
|
-
return brushToString(this.i.
|
|
439
|
+
return brushToString(this.i.j8);
|
|
440
440
|
}
|
|
441
441
|
set actualMarkerBrush(v) {
|
|
442
|
-
this.i.
|
|
443
|
-
this._a("actualMarkerBrush", brushToString(this.i.
|
|
442
|
+
this.i.j8 = stringToBrush(v);
|
|
443
|
+
this._a("actualMarkerBrush", brushToString(this.i.j8));
|
|
444
444
|
}
|
|
445
445
|
/**
|
|
446
446
|
* Gets or sets the brush that specifies how the current series object's marker outlines are painted.
|
|
447
447
|
*/
|
|
448
448
|
get markerOutline() {
|
|
449
|
-
return brushToString(this.i.
|
|
449
|
+
return brushToString(this.i.ke);
|
|
450
450
|
}
|
|
451
451
|
set markerOutline(v) {
|
|
452
|
-
this.i.
|
|
453
|
-
this._a("markerOutline", brushToString(this.i.
|
|
452
|
+
this.i.ke = stringToBrush(v);
|
|
453
|
+
this._a("markerOutline", brushToString(this.i.ke));
|
|
454
454
|
}
|
|
455
455
|
/**
|
|
456
456
|
* Gets the actual marker outline of the series.
|
|
457
457
|
*/
|
|
458
458
|
get actualMarkerOutline() {
|
|
459
|
-
return brushToString(this.i.
|
|
459
|
+
return brushToString(this.i.j9);
|
|
460
460
|
}
|
|
461
461
|
set actualMarkerOutline(v) {
|
|
462
|
-
this.i.
|
|
463
|
-
this._a("actualMarkerOutline", brushToString(this.i.
|
|
462
|
+
this.i.j9 = stringToBrush(v);
|
|
463
|
+
this._a("actualMarkerOutline", brushToString(this.i.j9));
|
|
464
464
|
}
|
|
465
465
|
/**
|
|
466
466
|
* Gets or sets the MarkerTemplate for the current series object.
|
|
467
467
|
*/
|
|
468
468
|
get markerTemplate() {
|
|
469
|
-
return this.i.
|
|
469
|
+
return this.i.hb;
|
|
470
470
|
}
|
|
471
471
|
set markerTemplate(v) {
|
|
472
|
-
this.i.
|
|
472
|
+
this.i.hb = v;
|
|
473
473
|
}
|
|
474
474
|
/**
|
|
475
475
|
* Gets the actual marker template used by the series.
|
|
476
476
|
*/
|
|
477
477
|
get actualMarkerTemplate() {
|
|
478
|
-
return this.i.
|
|
478
|
+
return this.i.g8;
|
|
479
479
|
}
|
|
480
480
|
set actualMarkerTemplate(v) {
|
|
481
|
-
this.i.
|
|
481
|
+
this.i.g8 = v;
|
|
482
482
|
}
|
|
483
483
|
/**
|
|
484
484
|
* Gets or sets the marker type for the current series object.
|
|
@@ -575,21 +575,21 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
575
575
|
* Some series types, such as LineSeries, do not display outlines. Therefore, this property does not affect some charts.
|
|
576
576
|
*/
|
|
577
577
|
get outline() {
|
|
578
|
-
return brushToString(this.i.
|
|
578
|
+
return brushToString(this.i.kg);
|
|
579
579
|
}
|
|
580
580
|
set outline(v) {
|
|
581
|
-
this.i.
|
|
582
|
-
this._a("outline", brushToString(this.i.
|
|
581
|
+
this.i.kg = stringToBrush(v);
|
|
582
|
+
this._a("outline", brushToString(this.i.kg));
|
|
583
583
|
}
|
|
584
584
|
/**
|
|
585
585
|
* Gets the series outline.
|
|
586
586
|
*/
|
|
587
587
|
get actualOutline() {
|
|
588
|
-
return brushToString(this.i.
|
|
588
|
+
return brushToString(this.i.kb);
|
|
589
589
|
}
|
|
590
590
|
set actualOutline(v) {
|
|
591
|
-
this.i.
|
|
592
|
-
this._a("actualOutline", brushToString(this.i.
|
|
591
|
+
this.i.kb = stringToBrush(v);
|
|
592
|
+
this._a("actualOutline", brushToString(this.i.kb));
|
|
593
593
|
}
|
|
594
594
|
/**
|
|
595
595
|
* Gets or sets the AreaFillOpacity of the stacked fragment. This property only applies for area-like series.
|
|
@@ -969,31 +969,31 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
969
969
|
* Gets or sets the Visibility of the stacked fragment.
|
|
970
970
|
*/
|
|
971
971
|
get visibility() {
|
|
972
|
-
return this.i.
|
|
972
|
+
return this.i.k8;
|
|
973
973
|
}
|
|
974
974
|
set visibility(v) {
|
|
975
|
-
this.i.
|
|
976
|
-
this._a("visibility", enumToString(Visibility_$type, this.i.
|
|
975
|
+
this.i.k8 = ensureEnum(Visibility_$type, v);
|
|
976
|
+
this._a("visibility", enumToString(Visibility_$type, this.i.k8));
|
|
977
977
|
}
|
|
978
978
|
/**
|
|
979
979
|
* Gets the actual visibility of the stacked fragment.
|
|
980
980
|
*/
|
|
981
981
|
get actualVisibility() {
|
|
982
|
-
return this.i.
|
|
982
|
+
return this.i.k6;
|
|
983
983
|
}
|
|
984
984
|
set actualVisibility(v) {
|
|
985
|
-
this.i.
|
|
986
|
-
this._a("actualVisibility", enumToString(Visibility_$type, this.i.
|
|
985
|
+
this.i.k6 = ensureEnum(Visibility_$type, v);
|
|
986
|
+
this._a("actualVisibility", enumToString(Visibility_$type, this.i.k6));
|
|
987
987
|
}
|
|
988
988
|
/**
|
|
989
989
|
* Gets the resolved brush used between the local series and the parent series.
|
|
990
990
|
*/
|
|
991
991
|
get parentOrLocalBrush() {
|
|
992
|
-
return brushToString(this.i.
|
|
992
|
+
return brushToString(this.i.kh);
|
|
993
993
|
}
|
|
994
994
|
set parentOrLocalBrush(v) {
|
|
995
|
-
this.i.
|
|
996
|
-
this._a("parentOrLocalBrush", brushToString(this.i.
|
|
995
|
+
this.i.kh = stringToBrush(v);
|
|
996
|
+
this._a("parentOrLocalBrush", brushToString(this.i.kh));
|
|
997
997
|
}
|
|
998
998
|
findByName(name) {
|
|
999
999
|
if (this.findEphemera) {
|
|
@@ -1086,7 +1086,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1086
1086
|
return (iv);
|
|
1087
1087
|
}
|
|
1088
1088
|
getSeriesValuePosition(world, useInterpolation, skipUnknowns) {
|
|
1089
|
-
let iv = this.i.
|
|
1089
|
+
let iv = this.i.kv(toPoint(world), useInterpolation, skipUnknowns);
|
|
1090
1090
|
return fromPoint(iv);
|
|
1091
1091
|
}
|
|
1092
1092
|
/**
|
|
@@ -1095,7 +1095,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1095
1095
|
* @param world * The world coordinate for which to get a value bounding box for
|
|
1096
1096
|
*/
|
|
1097
1097
|
getSeriesValueBoundingBox(world) {
|
|
1098
|
-
let iv = this.i.
|
|
1098
|
+
let iv = this.i.kz(toPoint(world));
|
|
1099
1099
|
return fromRect(iv);
|
|
1100
1100
|
}
|
|
1101
1101
|
/**
|
|
@@ -1104,7 +1104,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1104
1104
|
* @param world * The world coordinates for which to get a value marker bounding box for
|
|
1105
1105
|
*/
|
|
1106
1106
|
getSeriesValueMarkerBoundingBox(world) {
|
|
1107
|
-
let iv = this.i.
|
|
1107
|
+
let iv = this.i.k1(toPoint(world));
|
|
1108
1108
|
return fromRect(iv);
|
|
1109
1109
|
}
|
|
1110
1110
|
getSeriesHighValue(world, useInterpolation, skipUnknowns) {
|
|
@@ -1112,7 +1112,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1112
1112
|
return (iv);
|
|
1113
1113
|
}
|
|
1114
1114
|
getSeriesHighValuePosition(world, useInterpolation, skipUnknowns) {
|
|
1115
|
-
let iv = this.i.
|
|
1115
|
+
let iv = this.i.kr(toPoint(world), useInterpolation, skipUnknowns);
|
|
1116
1116
|
return fromPoint(iv);
|
|
1117
1117
|
}
|
|
1118
1118
|
getSeriesLowValue(world, useInterpolation, skipUnknowns) {
|
|
@@ -1120,11 +1120,11 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1120
1120
|
return (iv);
|
|
1121
1121
|
}
|
|
1122
1122
|
getSeriesLowValuePosition(world, useInterpolation, skipUnknowns) {
|
|
1123
|
-
let iv = this.i.
|
|
1123
|
+
let iv = this.i.kt(toPoint(world), useInterpolation, skipUnknowns);
|
|
1124
1124
|
return fromPoint(iv);
|
|
1125
1125
|
}
|
|
1126
1126
|
getSeriesValuePositionFromSeriesPixel(mouse, useInterpolation, skipUnknowns) {
|
|
1127
|
-
let iv = this.i.
|
|
1127
|
+
let iv = this.i.kw(toPoint(mouse), useInterpolation, skipUnknowns);
|
|
1128
1128
|
return fromPoint(iv);
|
|
1129
1129
|
}
|
|
1130
1130
|
getSeriesValueFromSeriesPixel(mouse, useInterpolation, skipUnknowns) {
|
|
@@ -1145,7 +1145,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1145
1145
|
* @param seriesPoint * The pixel location within the plot area of the series.
|
|
1146
1146
|
*/
|
|
1147
1147
|
toWorldPosition(seriesPoint) {
|
|
1148
|
-
let iv = this.i.
|
|
1148
|
+
let iv = this.i.kx(toPoint(seriesPoint));
|
|
1149
1149
|
return fromPoint(iv);
|
|
1150
1150
|
}
|
|
1151
1151
|
/**
|
|
@@ -1154,7 +1154,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1154
1154
|
* @param world * The world position from which to convert.
|
|
1155
1155
|
*/
|
|
1156
1156
|
fromWorldPosition(world) {
|
|
1157
|
-
let iv = this.i.
|
|
1157
|
+
let iv = this.i.kq(toPoint(world));
|
|
1158
1158
|
return fromPoint(iv);
|
|
1159
1159
|
}
|
|
1160
1160
|
/**
|
|
@@ -1171,7 +1171,7 @@ export let IgcStackedFragmentSeriesComponent = /*@__PURE__*/ (() => {
|
|
|
1171
1171
|
|
|
1172
1172
|
*/
|
|
1173
1173
|
getEffectiveViewport() {
|
|
1174
|
-
let iv = this.i.
|
|
1174
|
+
let iv = this.i.ky();
|
|
1175
1175
|
return fromRect(iv);
|
|
1176
1176
|
}
|
|
1177
1177
|
/**
|
|
@@ -682,10 +682,12 @@ var DataChartToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
682
682
|
for (var _b = __values(fromEnum(a.series)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
683
683
|
var c = _c.value;
|
|
684
684
|
var d = c.ag();
|
|
685
|
-
|
|
686
|
-
var
|
|
687
|
-
|
|
688
|
-
e.
|
|
685
|
+
if (d != null) {
|
|
686
|
+
for (var f = 0; f < d.length; f++) {
|
|
687
|
+
var e = d[f];
|
|
688
|
+
if (e.ci) {
|
|
689
|
+
e.ct = true;
|
|
690
|
+
}
|
|
689
691
|
}
|
|
690
692
|
}
|
|
691
693
|
}
|
|
@@ -40,9 +40,9 @@ var SortingTrendLineManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
40
40
|
if (this.c(b)) {
|
|
41
41
|
this.d.clear();
|
|
42
42
|
this.a = TrendFitCalculator.a(j, b, g, this.a, c.count, function (k) { return (k + 1); }, function (k) { return c.item(k); }, function (k) {
|
|
43
|
-
var l = truncate(Math.floor(k));
|
|
44
|
-
var m = truncate(Math.ceil(k));
|
|
45
|
-
var n = k - l;
|
|
43
|
+
var l = truncate(Math.floor(k - 1));
|
|
44
|
+
var m = truncate(Math.ceil(k - 1));
|
|
45
|
+
var n = (k - 1) - l;
|
|
46
46
|
var o;
|
|
47
47
|
if (m <= i) {
|
|
48
48
|
o = _this.h(l) + n * (_this.h(m) - _this.h(l));
|
|
@@ -51,7 +51,7 @@ var SortingTrendLineManager = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
51
51
|
o = _this.h(l) + n * (_this.h(truncate(i)) - _this.h(l));
|
|
52
52
|
}
|
|
53
53
|
return e(o);
|
|
54
|
-
}, f, h, i);
|
|
54
|
+
}, f, h + 1, i + 1);
|
|
55
55
|
}
|
|
56
56
|
if (this.b(b)) {
|
|
57
57
|
this.a = null;
|