igniteui-webcomponents-charts 5.1.1 → 5.2.0
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/bundles/igniteui-webcomponents-charts.umd.js +1107 -602
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/AxisStrokeSettings.js +21 -0
- package/esm2015/lib/DataChartToolbarProvider.js +229 -196
- package/esm2015/lib/FunnelChartSelectedItemsChangedEventArgs.js +43 -0
- package/esm2015/lib/FunnelChartSelectedItemsCollection.js +42 -0
- package/esm2015/lib/XamFunnelView_combined.js +353 -304
- package/esm2015/lib/igc-funnel-chart-component.js +168 -104
- package/esm2015/lib/igc-funnel-chart-selected-items-changed-event-args.js +126 -0
- package/esm2015/lib/igc-funnel-chart-selected-items-collection.js +30 -0
- package/esm2015/lib/igc-series-viewer-component.js +33 -0
- package/esm2015/public_api.js +5 -0
- package/esm5/lib/AxisStrokeSettings.js +23 -0
- package/esm5/lib/DataChartToolbarProvider.js +229 -196
- package/esm5/lib/FunnelChartSelectedItemsChangedEventArgs.js +57 -0
- package/esm5/lib/FunnelChartSelectedItemsCollection.js +48 -0
- package/esm5/lib/XamFunnelView_combined.js +368 -302
- package/esm5/lib/igc-funnel-chart-component.js +177 -104
- package/esm5/lib/igc-funnel-chart-selected-items-changed-event-args.js +144 -0
- package/esm5/lib/igc-funnel-chart-selected-items-collection.js +35 -0
- package/esm5/lib/igc-series-viewer-component.js +45 -0
- package/esm5/public_api.js +5 -0
- package/fesm2015/igniteui-webcomponents-charts.js +1029 -603
- package/fesm5/igniteui-webcomponents-charts.js +1103 -603
- package/lib/AxisStrokeSettings.d.ts +10 -0
- package/lib/DataChartToolbarProvider.d.ts +28 -26
- package/lib/FunnelChartSelectedItemsChangedEventArgs.d.ts +18 -0
- package/lib/FunnelChartSelectedItemsCollection.d.ts +14 -0
- package/lib/FunnelChartVisualData.d.ts +3 -3
- package/lib/XamFunnelView_combined.d.ts +111 -107
- package/lib/igc-funnel-chart-component.d.ts +15 -0
- package/lib/igc-funnel-chart-selected-items-changed-event-args.d.ts +33 -0
- package/lib/igc-funnel-chart-selected-items-collection.d.ts +6 -0
- package/lib/igc-series-viewer-component.d.ts +18 -0
- package/package.json +2 -2
- package/public_api.d.ts +5 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { EventArgs, markType } from "igniteui-webcomponents-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let FunnelChartSelectedItemsChangedEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class FunnelChartSelectedItemsChangedEventArgs extends EventArgs {
|
|
13
|
+
get oldItems() {
|
|
14
|
+
return this._oldItems;
|
|
15
|
+
}
|
|
16
|
+
set oldItems(a) {
|
|
17
|
+
this._oldItems = a;
|
|
18
|
+
}
|
|
19
|
+
get newItems() {
|
|
20
|
+
return this._newItems;
|
|
21
|
+
}
|
|
22
|
+
set newItems(a) {
|
|
23
|
+
this._newItems = a;
|
|
24
|
+
}
|
|
25
|
+
get currentItems() {
|
|
26
|
+
return this._currentItems;
|
|
27
|
+
}
|
|
28
|
+
set currentItems(a) {
|
|
29
|
+
this._currentItems = a;
|
|
30
|
+
}
|
|
31
|
+
constructor(a, b, c) {
|
|
32
|
+
super();
|
|
33
|
+
this._oldItems = null;
|
|
34
|
+
this._newItems = null;
|
|
35
|
+
this._currentItems = null;
|
|
36
|
+
this.oldItems = a;
|
|
37
|
+
this.newItems = b;
|
|
38
|
+
this.currentItems = c;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
FunnelChartSelectedItemsChangedEventArgs.$t = /*@__PURE__*/ markType(FunnelChartSelectedItemsChangedEventArgs, 'FunnelChartSelectedItemsChangedEventArgs', EventArgs.$);
|
|
42
|
+
return FunnelChartSelectedItemsChangedEventArgs;
|
|
43
|
+
})();
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
8
|
+
import { Base, PropertyChangedEventArgs, delegateCombine, markType } from "igniteui-webcomponents-core";
|
|
9
|
+
import { NotifyCollectionChangedEventArgs } from "igniteui-webcomponents-core";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export let FunnelChartSelectedItemsCollection = /*@__PURE__*/ (() => {
|
|
14
|
+
class FunnelChartSelectedItemsCollection extends ObservableCollection$1 {
|
|
15
|
+
constructor() {
|
|
16
|
+
super(Base.$, 0);
|
|
17
|
+
this.af = false;
|
|
18
|
+
}
|
|
19
|
+
get ae() {
|
|
20
|
+
return this;
|
|
21
|
+
}
|
|
22
|
+
ag(a) {
|
|
23
|
+
this.collectionChanged = delegateCombine(this.collectionChanged, a);
|
|
24
|
+
}
|
|
25
|
+
u(a) {
|
|
26
|
+
let b = this._inner[a];
|
|
27
|
+
if (a == 0) {
|
|
28
|
+
this._inner.shift();
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
this._inner.splice(a, 1);
|
|
32
|
+
}
|
|
33
|
+
this.ad(new PropertyChangedEventArgs("Count"));
|
|
34
|
+
this.ad(new PropertyChangedEventArgs("Item[]"));
|
|
35
|
+
if (!this.af) {
|
|
36
|
+
this.ac(new NotifyCollectionChangedEventArgs(1, 1, b, a));
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
FunnelChartSelectedItemsCollection.$t = /*@__PURE__*/ markType(FunnelChartSelectedItemsCollection, 'FunnelChartSelectedItemsCollection', /*@__PURE__*/ ObservableCollection$1.$.specialize(Base.$));
|
|
41
|
+
return FunnelChartSelectedItemsCollection;
|
|
42
|
+
})();
|