igniteui-webcomponents-charts 4.3.1 → 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.
@@ -557,10 +557,12 @@ export let DataChartToolbarProvider = /*@__PURE__*/ (() => {
557
557
  this.af(a, b, "ShowLastValueLabel", 6, () => {
558
558
  for (let c of fromEnum(a.series)) {
559
559
  let d = c.ag();
560
- for (let f = 0; f < d.length; f++) {
561
- let e = d[f];
562
- if (e.ci) {
563
- e.ct = true;
560
+ if (d != null) {
561
+ for (let f = 0; f < d.length; f++) {
562
+ let e = d[f];
563
+ if (e.ci) {
564
+ e.ct = true;
565
+ }
564
566
  }
565
567
  }
566
568
  }
@@ -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
  }
@@ -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
- for (var f = 0; f < d.length; f++) {
686
- var e = d[f];
687
- if (e.ci) {
688
- e.ct = true;
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
  }
@@ -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
  }());