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
|
@@ -4,7 +4,7 @@ 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 { Base, Point_$type, typeCast, runOn, delegateCombine, fromEnum, markType, EnumUtil, String_$type, delegateRemove, IEnumerable_$type, enumGetBox, markDep } from "igniteui-webcomponents-core";
|
|
7
|
+
import { Base, Point_$type, typeCast, runOn, delegateCombine, fromEnum, markType, EnumUtil, String_$type, delegateRemove, IEnumerable_$type, enumGetBox, Number_$type, markDep } from "igniteui-webcomponents-core";
|
|
8
8
|
import { IOuterLabelWidthDecider_$type } from "./IOuterLabelWidthDecider";
|
|
9
9
|
import { IFunnelLabelSizeDecider_$type } from "./IFunnelLabelSizeDecider";
|
|
10
10
|
import { ServiceProvider } from "./ServiceProvider";
|
|
@@ -65,7 +65,6 @@ import { IntColumn } from "./IntColumn";
|
|
|
65
65
|
import { PointList } from "./PointList";
|
|
66
66
|
import { Convert } from "igniteui-webcomponents-core";
|
|
67
67
|
import { HighlightedValueDisplayMode_$type } from "igniteui-webcomponents-core";
|
|
68
|
-
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
69
68
|
import { ILegendSeries_$type } from "igniteui-webcomponents-core";
|
|
70
69
|
import { UIElement } from "igniteui-webcomponents-core";
|
|
71
70
|
import { ContentControl } from "igniteui-webcomponents-core";
|
|
@@ -78,8 +77,10 @@ import { ILegendOwner_$type } from "igniteui-webcomponents-core";
|
|
|
78
77
|
import { ILegendTemplateProvider_$type } from "igniteui-webcomponents-core";
|
|
79
78
|
import { DependencyProperty } from "igniteui-webcomponents-core";
|
|
80
79
|
import { FastItemsSource } from "igniteui-webcomponents-core";
|
|
80
|
+
import { FunnelChartSelectedItemsCollection } from "./FunnelChartSelectedItemsCollection";
|
|
81
81
|
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
82
82
|
import { FunnelLegendTemplates } from "./FunnelLegendTemplates";
|
|
83
|
+
import { FunnelChartSelectedItemsChangedEventArgs } from "./FunnelChartSelectedItemsChangedEventArgs";
|
|
83
84
|
import { DeviceUtils } from "igniteui-webcomponents-core";
|
|
84
85
|
import { FunnelSliceClickedEventArgs } from "./FunnelSliceClickedEventArgs";
|
|
85
86
|
import { FunnelSliceEventArgs } from "./FunnelSliceEventArgs";
|
|
@@ -525,13 +526,13 @@ export let XamFunnelView = /*@__PURE__*/ (() => {
|
|
|
525
526
|
this.as();
|
|
526
527
|
}
|
|
527
528
|
av(a) {
|
|
528
|
-
let b = a.
|
|
529
|
-
let c = a.
|
|
529
|
+
let b = a.b4;
|
|
530
|
+
let c = a.by;
|
|
530
531
|
if (!isNaN_(b) && b != 0) {
|
|
531
532
|
return;
|
|
532
533
|
}
|
|
533
534
|
if (window.devicePixelRatio != undefined && window.devicePixelRatio != c) {
|
|
534
|
-
a.
|
|
535
|
+
a.by = window.devicePixelRatio;
|
|
535
536
|
}
|
|
536
537
|
}
|
|
537
538
|
aw(a) {
|
|
@@ -2032,47 +2033,47 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2032
2033
|
class XamFunnelChart extends Control {
|
|
2033
2034
|
constructor() {
|
|
2034
2035
|
super();
|
|
2035
|
-
this.
|
|
2036
|
+
this.at = null;
|
|
2037
|
+
this.av = null;
|
|
2036
2038
|
this.as = null;
|
|
2037
|
-
this.
|
|
2038
|
-
this.ax = null;
|
|
2039
|
-
this.b4 = null;
|
|
2040
|
-
this.a7 = null;
|
|
2039
|
+
this.a0 = null;
|
|
2041
2040
|
this.b5 = null;
|
|
2042
|
-
this.
|
|
2043
|
-
this.bt = 0.5;
|
|
2044
|
-
this.a1 = 1;
|
|
2045
|
-
this.a5 = null;
|
|
2046
|
-
this.a6 = null;
|
|
2041
|
+
this.ba = null;
|
|
2047
2042
|
this.b6 = null;
|
|
2043
|
+
this.a7 = null;
|
|
2044
|
+
this.bu = 0.5;
|
|
2045
|
+
this.a4 = 1;
|
|
2046
|
+
this.a8 = null;
|
|
2047
|
+
this.a9 = null;
|
|
2048
2048
|
this.b7 = null;
|
|
2049
|
-
this.
|
|
2050
|
-
this.
|
|
2049
|
+
this.b8 = null;
|
|
2050
|
+
this.ak = new FunnelChartSelectedItemsCollection();
|
|
2051
|
+
this.br = new Dictionary$2(Base.$, Base.$, 0);
|
|
2052
|
+
this.selectedItemsChanged = null;
|
|
2053
|
+
this.cf = null;
|
|
2051
2054
|
this.ce = null;
|
|
2052
|
-
this.cd = null;
|
|
2053
2055
|
this.sliceClicked = null;
|
|
2054
2056
|
this.sliceEnter = null;
|
|
2055
2057
|
this.sliceLeave = null;
|
|
2056
2058
|
this.sliceHover = null;
|
|
2057
|
-
this.
|
|
2058
|
-
this.
|
|
2059
|
-
this.
|
|
2060
|
-
this.
|
|
2061
|
-
this.
|
|
2062
|
-
this.
|
|
2063
|
-
this.
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
this.
|
|
2067
|
-
this.
|
|
2068
|
-
this.
|
|
2069
|
-
this.
|
|
2070
|
-
this.
|
|
2071
|
-
this.
|
|
2072
|
-
this.
|
|
2073
|
-
this.ei();
|
|
2059
|
+
this.cc = null;
|
|
2060
|
+
this.bw = NaN;
|
|
2061
|
+
this.bv = 1;
|
|
2062
|
+
this.fn = null;
|
|
2063
|
+
this.fo = null;
|
|
2064
|
+
this.bv = 1;
|
|
2065
|
+
this.bw = NaN;
|
|
2066
|
+
this.ak.ag(runOn(this, this.ei));
|
|
2067
|
+
this.au = new MessageHandler();
|
|
2068
|
+
this.au.b(SliceClickedMessage.$, runOn(this, this.em));
|
|
2069
|
+
this.au.b(SliceMouseMessage.$, runOn(this, this.en));
|
|
2070
|
+
this.au.b(SelectedItemsChangedMessage.$, runOn(this, this.ej));
|
|
2071
|
+
this.as = new MessageChannel();
|
|
2072
|
+
this.b5 = (a, b) => this.dy(b.action, b.position, b.count, b.propertyName);
|
|
2073
|
+
this.b6 = (a, b) => this.d3(b.action, b.position, b.count, b.propertyName);
|
|
2074
|
+
this.ek();
|
|
2074
2075
|
this.ab = XamFunnelChart.$;
|
|
2075
|
-
this.
|
|
2076
|
+
this.a0 = new XamFunnelConnector(new XamFunnelView(), this);
|
|
2076
2077
|
this.legendItemTemplate = ((() => {
|
|
2077
2078
|
let $ret = new DataTemplate();
|
|
2078
2079
|
$ret.render = FunnelLegendTemplates.e;
|
|
@@ -2092,57 +2093,57 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2092
2093
|
destroy() {
|
|
2093
2094
|
this.provideContainer(null);
|
|
2094
2095
|
}
|
|
2095
|
-
get
|
|
2096
|
-
return this.
|
|
2097
|
-
}
|
|
2098
|
-
set ar(a) {
|
|
2099
|
-
this.aq = a;
|
|
2100
|
-
}
|
|
2101
|
-
ei() {
|
|
2102
|
-
this.ed(XamFunnelChart.$$p[1], 0, this.by);
|
|
2103
|
-
this.ed(XamFunnelChart.$$p[10], enumGetBox(Visibility_$type, this.ft), enumGetBox(Visibility_$type, this.ft));
|
|
2104
|
-
this.ed(XamFunnelChart.$$p[17], enumGetBox(OuterLabelAlignment_$type, this.au), enumGetBox(OuterLabelAlignment_$type, this.au));
|
|
2105
|
-
this.ed(XamFunnelChart.$$p[4], enumGetBox(FunnelSliceDisplay_$type, this.ak), enumGetBox(FunnelSliceDisplay_$type, this.ak));
|
|
2106
|
-
this.ed(XamFunnelChart.$$p[26], this.fq, this.fq);
|
|
2107
|
-
this.ed(XamFunnelChart.$$p[16], this.fp, this.fp);
|
|
2108
|
-
this.ej();
|
|
2096
|
+
get au() {
|
|
2097
|
+
return this.at;
|
|
2109
2098
|
}
|
|
2110
|
-
|
|
2099
|
+
set au(a) {
|
|
2100
|
+
this.at = a;
|
|
2101
|
+
}
|
|
2102
|
+
ek() {
|
|
2103
|
+
this.ee(XamFunnelChart.$$p[1], 0, this.bz);
|
|
2104
|
+
this.ee(XamFunnelChart.$$p[10], enumGetBox(Visibility_$type, this.fv), enumGetBox(Visibility_$type, this.fv));
|
|
2105
|
+
this.ee(XamFunnelChart.$$p[17], enumGetBox(OuterLabelAlignment_$type, this.ax), enumGetBox(OuterLabelAlignment_$type, this.ax));
|
|
2106
|
+
this.ee(XamFunnelChart.$$p[4], enumGetBox(FunnelSliceDisplay_$type, this.an), enumGetBox(FunnelSliceDisplay_$type, this.an));
|
|
2107
|
+
this.ee(XamFunnelChart.$$p[26], this.fs, this.fs);
|
|
2108
|
+
this.ee(XamFunnelChart.$$p[16], this.fr, this.fr);
|
|
2109
|
+
this.el();
|
|
2110
|
+
}
|
|
2111
|
+
el() {
|
|
2111
2112
|
let a = new PropertyChangedMessage();
|
|
2112
2113
|
a.g = "ItemProvider";
|
|
2113
2114
|
a.e = null;
|
|
2114
2115
|
a.d = this;
|
|
2115
|
-
this.
|
|
2116
|
+
this.as.i(a);
|
|
2116
2117
|
}
|
|
2117
|
-
get
|
|
2118
|
-
return this.
|
|
2118
|
+
get aw() {
|
|
2119
|
+
return this.av;
|
|
2119
2120
|
}
|
|
2120
|
-
set
|
|
2121
|
-
let b = this.
|
|
2122
|
-
this.
|
|
2123
|
-
this.
|
|
2121
|
+
set aw(a) {
|
|
2122
|
+
let b = this.av;
|
|
2123
|
+
this.av = a;
|
|
2124
|
+
this.eg(b, this.av);
|
|
2124
2125
|
}
|
|
2125
|
-
|
|
2126
|
+
eg(a, b) {
|
|
2126
2127
|
if (a != null) {
|
|
2127
2128
|
let c = typeCast(MessageChannel.$, a.b("ModelUpdateMessages"));
|
|
2128
2129
|
if (c != null) {
|
|
2129
|
-
c.h(runOn(this, this.
|
|
2130
|
+
c.h(runOn(this, this.d5));
|
|
2130
2131
|
}
|
|
2131
|
-
this.
|
|
2132
|
+
this.as.g();
|
|
2132
2133
|
}
|
|
2133
2134
|
if (b != null) {
|
|
2134
2135
|
let d = typeCast(MessageChannel.$, b.b("ModelUpdateMessages"));
|
|
2135
2136
|
if (d != null) {
|
|
2136
|
-
d.e(runOn(this, this.
|
|
2137
|
+
d.e(runOn(this, this.d5));
|
|
2137
2138
|
}
|
|
2138
2139
|
let e = typeCast(MessageChannel.$, b.b("ConfigurationMessages"));
|
|
2139
|
-
this.
|
|
2140
|
+
this.as.f(e);
|
|
2140
2141
|
}
|
|
2141
2142
|
}
|
|
2142
|
-
|
|
2143
|
-
this.
|
|
2143
|
+
d5(a) {
|
|
2144
|
+
this.au.c(a);
|
|
2144
2145
|
}
|
|
2145
|
-
|
|
2146
|
+
dy(a, b, c, d) {
|
|
2146
2147
|
let e = ((() => {
|
|
2147
2148
|
let $ret = new DataUpdatedMessage();
|
|
2148
2149
|
$ret.g = b;
|
|
@@ -2167,22 +2168,22 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2167
2168
|
e.c = 4;
|
|
2168
2169
|
break;
|
|
2169
2170
|
}
|
|
2170
|
-
this.
|
|
2171
|
-
this.
|
|
2172
|
-
this.
|
|
2173
|
-
this.
|
|
2171
|
+
this.ee("ValueColumn", this.bg, this.bg);
|
|
2172
|
+
this.ee("InnerLabelColumn", this.bc, this.bc);
|
|
2173
|
+
this.ee("OuterLabelColumn", this.bd, this.bd);
|
|
2174
|
+
this.as.i(e);
|
|
2174
2175
|
}
|
|
2175
|
-
get
|
|
2176
|
-
return this.
|
|
2176
|
+
get bg() {
|
|
2177
|
+
return this.ba;
|
|
2177
2178
|
}
|
|
2178
|
-
set
|
|
2179
|
-
if (this.
|
|
2180
|
-
let b = this.
|
|
2181
|
-
this.
|
|
2182
|
-
this.
|
|
2179
|
+
set bg(a) {
|
|
2180
|
+
if (this.ba != a) {
|
|
2181
|
+
let b = this.ba;
|
|
2182
|
+
this.ba = a;
|
|
2183
|
+
this.ee("ValueColumn", b, this.ba);
|
|
2183
2184
|
}
|
|
2184
2185
|
}
|
|
2185
|
-
|
|
2186
|
+
d3(a, b, c, d) {
|
|
2186
2187
|
let e = ((() => {
|
|
2187
2188
|
let $ret = new DataUpdatedMessage();
|
|
2188
2189
|
$ret.g = b;
|
|
@@ -2207,141 +2208,146 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2207
2208
|
e.c = 4;
|
|
2208
2209
|
break;
|
|
2209
2210
|
}
|
|
2210
|
-
this.
|
|
2211
|
-
this.
|
|
2211
|
+
this.ee("HighlightValueColumn", this.bb, this.bb);
|
|
2212
|
+
this.as.i(e);
|
|
2212
2213
|
}
|
|
2213
|
-
get
|
|
2214
|
-
return this.
|
|
2214
|
+
get bb() {
|
|
2215
|
+
return this.a7;
|
|
2215
2216
|
}
|
|
2216
|
-
set
|
|
2217
|
-
if (this.
|
|
2218
|
-
let b = this.
|
|
2219
|
-
this.
|
|
2220
|
-
this.
|
|
2221
|
-
this.
|
|
2217
|
+
set bb(a) {
|
|
2218
|
+
if (this.a7 != a) {
|
|
2219
|
+
let b = this.a7;
|
|
2220
|
+
this.a7 = a;
|
|
2221
|
+
this.ep();
|
|
2222
|
+
this.ee("HighlightValueColumn", b, this.a7);
|
|
2222
2223
|
}
|
|
2223
2224
|
}
|
|
2224
|
-
get
|
|
2225
|
-
return this.
|
|
2225
|
+
get bx() {
|
|
2226
|
+
return this.bu;
|
|
2226
2227
|
}
|
|
2227
|
-
set
|
|
2228
|
-
let b = this.
|
|
2229
|
-
this.
|
|
2230
|
-
if (b != this.
|
|
2231
|
-
this.
|
|
2228
|
+
set bx(a) {
|
|
2229
|
+
let b = this.bu;
|
|
2230
|
+
this.bu = a;
|
|
2231
|
+
if (b != this.bu) {
|
|
2232
|
+
this.ee("ActualHighlightValueOpacity", b, a);
|
|
2232
2233
|
}
|
|
2233
2234
|
}
|
|
2234
|
-
|
|
2235
|
-
this.
|
|
2235
|
+
eq() {
|
|
2236
|
+
this.bx = isNaN_(this.b1) ? 0.5 : Math.max(0, Math.min(this.b1, 1));
|
|
2236
2237
|
}
|
|
2237
|
-
get
|
|
2238
|
-
return this.
|
|
2238
|
+
get a5() {
|
|
2239
|
+
return this.a4;
|
|
2239
2240
|
}
|
|
2240
|
-
set
|
|
2241
|
-
this.
|
|
2241
|
+
set a5(a) {
|
|
2242
|
+
this.a4 = a;
|
|
2242
2243
|
}
|
|
2243
|
-
|
|
2244
|
-
let a = this.
|
|
2245
|
-
if (this.
|
|
2246
|
-
if (this.
|
|
2247
|
-
this.
|
|
2244
|
+
ep() {
|
|
2245
|
+
let a = this.a5;
|
|
2246
|
+
if (this.a6 != 1) {
|
|
2247
|
+
if (this.bb == null || this.bg == null || this.bb.count != this.bg.count) {
|
|
2248
|
+
this.a5 = 1;
|
|
2248
2249
|
}
|
|
2249
2250
|
else {
|
|
2250
|
-
this.
|
|
2251
|
+
this.a5 = 2;
|
|
2251
2252
|
}
|
|
2252
2253
|
}
|
|
2253
2254
|
else {
|
|
2254
|
-
this.
|
|
2255
|
+
this.a5 = 1;
|
|
2255
2256
|
}
|
|
2256
|
-
if (this.
|
|
2257
|
-
this.
|
|
2257
|
+
if (this.a5 != a) {
|
|
2258
|
+
this.ee("ActualHighlightValueDisplayMode", enumGetBox(HighlightedValueDisplayMode_$type, a), enumGetBox(HighlightedValueDisplayMode_$type, this.a5));
|
|
2258
2259
|
}
|
|
2259
2260
|
}
|
|
2260
|
-
get
|
|
2261
|
-
return EnumUtil.getEnumValue(HighlightedValueDisplayMode_$type, this.c(XamFunnelChart.
|
|
2261
|
+
get a6() {
|
|
2262
|
+
return EnumUtil.getEnumValue(HighlightedValueDisplayMode_$type, this.c(XamFunnelChart.ez));
|
|
2262
2263
|
}
|
|
2263
|
-
set
|
|
2264
|
-
this.h(XamFunnelChart.
|
|
2265
|
-
this.
|
|
2264
|
+
set a6(a) {
|
|
2265
|
+
this.h(XamFunnelChart.ez, enumGetBox(HighlightedValueDisplayMode_$type, a));
|
|
2266
|
+
this.ep();
|
|
2266
2267
|
}
|
|
2267
|
-
get
|
|
2268
|
-
return this.
|
|
2268
|
+
get bc() {
|
|
2269
|
+
return this.a8;
|
|
2269
2270
|
}
|
|
2270
|
-
set
|
|
2271
|
-
if (this.
|
|
2272
|
-
let b = this.
|
|
2273
|
-
this.
|
|
2274
|
-
this.
|
|
2271
|
+
set bc(a) {
|
|
2272
|
+
if (this.a8 != a) {
|
|
2273
|
+
let b = this.a8;
|
|
2274
|
+
this.a8 = a;
|
|
2275
|
+
this.ee("InnerLabelColumn", b, this.bc);
|
|
2275
2276
|
}
|
|
2276
2277
|
}
|
|
2277
|
-
get
|
|
2278
|
-
return this.
|
|
2278
|
+
get bd() {
|
|
2279
|
+
return this.a9;
|
|
2279
2280
|
}
|
|
2280
|
-
set
|
|
2281
|
-
if (this.
|
|
2282
|
-
let b = this.
|
|
2283
|
-
this.
|
|
2284
|
-
this.
|
|
2281
|
+
set bd(a) {
|
|
2282
|
+
if (this.a9 != a) {
|
|
2283
|
+
let b = this.a9;
|
|
2284
|
+
this.a9 = a;
|
|
2285
|
+
this.ee("OuterLabelColumn", b, this.bd);
|
|
2285
2286
|
}
|
|
2286
2287
|
}
|
|
2287
|
-
get b8() {
|
|
2288
|
-
return this.b6;
|
|
2289
|
-
}
|
|
2290
|
-
set b8(a) {
|
|
2291
|
-
let b = this.b6;
|
|
2292
|
-
this.b6 = a;
|
|
2293
|
-
this.ed("FormatInnerLabel", b, a);
|
|
2294
|
-
}
|
|
2295
2288
|
get b9() {
|
|
2296
2289
|
return this.b7;
|
|
2297
2290
|
}
|
|
2298
2291
|
set b9(a) {
|
|
2299
2292
|
let b = this.b7;
|
|
2300
2293
|
this.b7 = a;
|
|
2301
|
-
this.
|
|
2294
|
+
this.ee("FormatInnerLabel", b, a);
|
|
2302
2295
|
}
|
|
2303
|
-
get
|
|
2304
|
-
return this.
|
|
2296
|
+
get ca() {
|
|
2297
|
+
return this.b8;
|
|
2298
|
+
}
|
|
2299
|
+
set ca(a) {
|
|
2300
|
+
let b = this.b8;
|
|
2301
|
+
this.b8 = a;
|
|
2302
|
+
this.ee("FormatOuterLabel", b, a);
|
|
2303
|
+
}
|
|
2304
|
+
get selectedItems() {
|
|
2305
|
+
return this.ak;
|
|
2306
|
+
}
|
|
2307
|
+
ef(a, b) {
|
|
2308
|
+
if (this.selectedItemsChanged != null) {
|
|
2309
|
+
this.selectedItemsChanged(a, b);
|
|
2310
|
+
}
|
|
2311
|
+
}
|
|
2312
|
+
get dl() {
|
|
2313
|
+
return this.cf;
|
|
2305
2314
|
}
|
|
2306
|
-
|
|
2315
|
+
set dl(a) {
|
|
2316
|
+
let b = this.cf;
|
|
2317
|
+
this.cf = a;
|
|
2318
|
+
this.ee("TextStyle", b, a);
|
|
2319
|
+
}
|
|
2320
|
+
get dd() {
|
|
2307
2321
|
return this.ce;
|
|
2308
2322
|
}
|
|
2309
|
-
set
|
|
2323
|
+
set dd(a) {
|
|
2310
2324
|
let b = this.ce;
|
|
2311
2325
|
this.ce = a;
|
|
2312
|
-
this.
|
|
2313
|
-
}
|
|
2314
|
-
get dc() {
|
|
2315
|
-
return this.cd;
|
|
2316
|
-
}
|
|
2317
|
-
set dc(a) {
|
|
2318
|
-
let b = this.cd;
|
|
2319
|
-
this.cd = a;
|
|
2320
|
-
this.ed("OuterLabelTextStyle", b, a);
|
|
2326
|
+
this.ee("OuterLabelTextStyle", b, a);
|
|
2321
2327
|
}
|
|
2322
2328
|
onDetachedFromUI() {
|
|
2323
|
-
this.
|
|
2329
|
+
this.a0.e.az();
|
|
2324
2330
|
}
|
|
2325
2331
|
onAttachedToUI() {
|
|
2326
|
-
this.
|
|
2332
|
+
this.a0.e.ax(this);
|
|
2327
2333
|
}
|
|
2328
|
-
|
|
2329
|
-
if (this.
|
|
2334
|
+
ee(a, b, c) {
|
|
2335
|
+
if (this.bk(a, b, c) || this.bj(a, b, c) || this.bi(a, b, c) || this.bm(a, b, c) || this.bl(a, b, c)) {
|
|
2330
2336
|
return;
|
|
2331
2337
|
}
|
|
2332
2338
|
if (a == "PixelScalingRatio") {
|
|
2333
|
-
if (isNaN_(DeviceUtils.a(this.
|
|
2334
|
-
this.
|
|
2339
|
+
if (isNaN_(DeviceUtils.a(this.b4))) {
|
|
2340
|
+
this.by = 1;
|
|
2335
2341
|
}
|
|
2336
2342
|
else {
|
|
2337
|
-
this.
|
|
2343
|
+
this.by = DeviceUtils.a(this.b4);
|
|
2338
2344
|
}
|
|
2339
2345
|
}
|
|
2340
2346
|
if (a == XamFunnelChart.$$p[6]) {
|
|
2341
|
-
this.
|
|
2347
|
+
this.eq();
|
|
2342
2348
|
return;
|
|
2343
2349
|
}
|
|
2344
|
-
this.
|
|
2350
|
+
this.as.i(((() => {
|
|
2345
2351
|
let $ret = new PropertyChangedMessage();
|
|
2346
2352
|
$ret.g = a;
|
|
2347
2353
|
$ret.e = b;
|
|
@@ -2349,9 +2355,9 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2349
2355
|
return $ret;
|
|
2350
2356
|
})()));
|
|
2351
2357
|
}
|
|
2352
|
-
|
|
2358
|
+
bi(a, b, c) {
|
|
2353
2359
|
if (a == XamFunnelChart.$$p[2] || a == XamFunnelChart.$$p[21]) {
|
|
2354
|
-
this.
|
|
2360
|
+
this.as.i(((() => {
|
|
2355
2361
|
let $ret = new PropertyChangedMessage();
|
|
2356
2362
|
$ret.g = a;
|
|
2357
2363
|
$ret.e = b == null ? null : b;
|
|
@@ -2362,23 +2368,23 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2362
2368
|
}
|
|
2363
2369
|
return false;
|
|
2364
2370
|
}
|
|
2365
|
-
|
|
2371
|
+
bk(a, b, c) {
|
|
2366
2372
|
if (a == XamFunnelChart.$$p[12]) {
|
|
2367
2373
|
if (b != null) {
|
|
2368
|
-
this.
|
|
2369
|
-
if (this.
|
|
2370
|
-
this.
|
|
2374
|
+
this.a2 = null;
|
|
2375
|
+
if (this.a3 != null && this.highlightedItemsSource == null) {
|
|
2376
|
+
this.a3 = null;
|
|
2371
2377
|
}
|
|
2372
2378
|
}
|
|
2373
2379
|
if (c != null) {
|
|
2374
|
-
this.
|
|
2375
|
-
this.
|
|
2380
|
+
this.selectedItems.clear();
|
|
2381
|
+
this.a2 = ((() => {
|
|
2376
2382
|
let $ret = new FastItemsSource();
|
|
2377
2383
|
$ret.e = this.itemsSource;
|
|
2378
2384
|
return $ret;
|
|
2379
2385
|
})());
|
|
2380
2386
|
if (this.highlightedItemsSource == null) {
|
|
2381
|
-
this.
|
|
2387
|
+
this.a3 = ((() => {
|
|
2382
2388
|
let $ret = new FastItemsSource();
|
|
2383
2389
|
$ret.e = this.itemsSource;
|
|
2384
2390
|
return $ret;
|
|
@@ -2390,168 +2396,168 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2390
2396
|
else if (a == XamFunnelChart.$$p[3]) {
|
|
2391
2397
|
if (b != null) {
|
|
2392
2398
|
let d = b;
|
|
2393
|
-
d.event = delegateRemove(d.event, this.
|
|
2399
|
+
d.event = delegateRemove(d.event, this.b5);
|
|
2394
2400
|
}
|
|
2395
2401
|
if (c != null) {
|
|
2396
2402
|
let e = c;
|
|
2397
|
-
e.event = delegateCombine(e.event, this.
|
|
2403
|
+
e.event = delegateCombine(e.event, this.b5);
|
|
2398
2404
|
}
|
|
2399
|
-
this.
|
|
2405
|
+
this.d2(a, b, c);
|
|
2400
2406
|
return true;
|
|
2401
2407
|
}
|
|
2402
2408
|
else if (a == XamFunnelChart.$$p[30] || a == XamFunnelChart.$$p[9] || a == XamFunnelChart.$$p[18]) {
|
|
2403
|
-
this.
|
|
2409
|
+
this.d2(a, b, c);
|
|
2404
2410
|
return false;
|
|
2405
2411
|
}
|
|
2406
2412
|
return false;
|
|
2407
2413
|
}
|
|
2408
|
-
|
|
2414
|
+
bj(a, b, c) {
|
|
2409
2415
|
if (a == XamFunnelChart.$$p[7]) {
|
|
2410
2416
|
if (b != null) {
|
|
2411
|
-
this.
|
|
2417
|
+
this.a3 = null;
|
|
2412
2418
|
}
|
|
2413
2419
|
if (c != null) {
|
|
2414
|
-
this.
|
|
2415
|
-
this.
|
|
2420
|
+
this.selectedItems.clear();
|
|
2421
|
+
this.a3 = ((() => {
|
|
2416
2422
|
let $ret = new FastItemsSource();
|
|
2417
2423
|
$ret.e = this.highlightedItemsSource;
|
|
2418
2424
|
return $ret;
|
|
2419
2425
|
})());
|
|
2420
2426
|
}
|
|
2421
2427
|
else if (this.itemsSource != null) {
|
|
2422
|
-
this.
|
|
2423
|
-
this.
|
|
2428
|
+
this.selectedItems.clear();
|
|
2429
|
+
this.a3 = ((() => {
|
|
2424
2430
|
let $ret = new FastItemsSource();
|
|
2425
2431
|
$ret.e = this.itemsSource;
|
|
2426
2432
|
return $ret;
|
|
2427
2433
|
})());
|
|
2428
2434
|
}
|
|
2429
|
-
this.
|
|
2435
|
+
this.ep();
|
|
2430
2436
|
return true;
|
|
2431
2437
|
}
|
|
2432
2438
|
else if (a == XamFunnelChart.$$p[5]) {
|
|
2433
2439
|
if (b != null) {
|
|
2434
2440
|
let d = b;
|
|
2435
|
-
d.event = delegateRemove(d.event, this.
|
|
2441
|
+
d.event = delegateRemove(d.event, this.b6);
|
|
2436
2442
|
}
|
|
2437
2443
|
if (c != null) {
|
|
2438
2444
|
let e = c;
|
|
2439
|
-
e.event = delegateCombine(e.event, this.
|
|
2445
|
+
e.event = delegateCombine(e.event, this.b6);
|
|
2440
2446
|
}
|
|
2441
|
-
this.
|
|
2447
|
+
this.d1(a, b, c);
|
|
2442
2448
|
return true;
|
|
2443
2449
|
}
|
|
2444
2450
|
else if (a == XamFunnelChart.$$p[8]) {
|
|
2445
|
-
this.
|
|
2451
|
+
this.d1(a, b, c);
|
|
2446
2452
|
return false;
|
|
2447
2453
|
}
|
|
2448
2454
|
return false;
|
|
2449
2455
|
}
|
|
2450
|
-
|
|
2456
|
+
be(a, b) {
|
|
2451
2457
|
return a.registerColumn(b, null, false);
|
|
2452
2458
|
}
|
|
2453
|
-
|
|
2459
|
+
bf(a, b) {
|
|
2454
2460
|
return a.registerColumnObject(b, null, false);
|
|
2455
2461
|
}
|
|
2456
|
-
|
|
2457
|
-
if (this.
|
|
2462
|
+
d2(a, b, c) {
|
|
2463
|
+
if (this.a2 == null) {
|
|
2458
2464
|
let d = typeCast(FastItemsSource.$, b);
|
|
2459
2465
|
if (d != null) {
|
|
2460
|
-
if (this.
|
|
2461
|
-
d.deregisterColumn(this.
|
|
2466
|
+
if (this.bg != null) {
|
|
2467
|
+
d.deregisterColumn(this.bg);
|
|
2462
2468
|
}
|
|
2463
|
-
if (this.
|
|
2464
|
-
d.deregisterColumn(this.
|
|
2469
|
+
if (this.bc != null) {
|
|
2470
|
+
d.deregisterColumn(this.bc);
|
|
2465
2471
|
}
|
|
2466
|
-
if (this.
|
|
2467
|
-
d.deregisterColumn(this.
|
|
2472
|
+
if (this.bd != null) {
|
|
2473
|
+
d.deregisterColumn(this.bd);
|
|
2468
2474
|
}
|
|
2475
|
+
this.bg = null;
|
|
2476
|
+
this.bc = null;
|
|
2469
2477
|
this.bd = null;
|
|
2470
|
-
this.a9 = null;
|
|
2471
|
-
this.ba = null;
|
|
2472
2478
|
}
|
|
2473
2479
|
return;
|
|
2474
2480
|
}
|
|
2475
2481
|
if (b != null && typeof b === 'string') {
|
|
2476
2482
|
switch (a) {
|
|
2477
2483
|
case XamFunnelChart.$$p[30]:
|
|
2478
|
-
this.
|
|
2479
|
-
this.
|
|
2484
|
+
this.a2.deregisterColumn(this.bg);
|
|
2485
|
+
this.bg = null;
|
|
2480
2486
|
break;
|
|
2481
2487
|
case XamFunnelChart.$$p[9]:
|
|
2482
|
-
this.
|
|
2483
|
-
this.
|
|
2488
|
+
this.a2.deregisterColumn(this.bc);
|
|
2489
|
+
this.bc = null;
|
|
2484
2490
|
break;
|
|
2485
2491
|
case XamFunnelChart.$$p[18]:
|
|
2486
|
-
this.
|
|
2487
|
-
this.
|
|
2492
|
+
this.a2.deregisterColumn(this.bd);
|
|
2493
|
+
this.bd = null;
|
|
2488
2494
|
break;
|
|
2489
2495
|
}
|
|
2490
2496
|
}
|
|
2491
2497
|
if (c != null && typeCast(FastItemsSource.$, c) !== null) {
|
|
2492
|
-
if (this.
|
|
2493
|
-
this.
|
|
2498
|
+
if (this.dw != null) {
|
|
2499
|
+
this.bg = this.be(c, this.dw);
|
|
2494
2500
|
}
|
|
2495
|
-
if (this.
|
|
2496
|
-
this.
|
|
2501
|
+
if (this.cz != null) {
|
|
2502
|
+
this.bc = this.bf(c, this.cz);
|
|
2497
2503
|
}
|
|
2498
|
-
if (this.
|
|
2499
|
-
this.
|
|
2504
|
+
if (this.da != null) {
|
|
2505
|
+
this.bd = this.bf(c, this.da);
|
|
2500
2506
|
}
|
|
2501
2507
|
}
|
|
2502
2508
|
if (c != null && typeof c === 'string') {
|
|
2503
2509
|
switch (a) {
|
|
2504
2510
|
case XamFunnelChart.$$p[30]:
|
|
2505
|
-
this.
|
|
2511
|
+
this.bg = this.be(this.a2, this.dw);
|
|
2506
2512
|
break;
|
|
2507
2513
|
case XamFunnelChart.$$p[9]:
|
|
2508
|
-
this.
|
|
2514
|
+
this.bc = this.bf(this.a2, this.cz);
|
|
2509
2515
|
break;
|
|
2510
2516
|
case XamFunnelChart.$$p[18]:
|
|
2511
|
-
this.
|
|
2517
|
+
this.bd = this.bf(this.a2, this.da);
|
|
2512
2518
|
break;
|
|
2513
2519
|
}
|
|
2514
2520
|
}
|
|
2515
2521
|
}
|
|
2516
|
-
|
|
2517
|
-
if (this.
|
|
2522
|
+
d1(a, b, c) {
|
|
2523
|
+
if (this.a3 == null) {
|
|
2518
2524
|
let d = typeCast(FastItemsSource.$, b);
|
|
2519
2525
|
if (d != null) {
|
|
2520
|
-
if (this.
|
|
2521
|
-
d.deregisterColumn(this.
|
|
2526
|
+
if (this.bb != null) {
|
|
2527
|
+
d.deregisterColumn(this.bb);
|
|
2522
2528
|
}
|
|
2523
|
-
this.
|
|
2529
|
+
this.bb = null;
|
|
2524
2530
|
}
|
|
2525
|
-
this.
|
|
2531
|
+
this.ep();
|
|
2526
2532
|
return;
|
|
2527
2533
|
}
|
|
2528
2534
|
if (b != null && typeof b === 'string') {
|
|
2529
2535
|
switch (a) {
|
|
2530
2536
|
case XamFunnelChart.$$p[8]:
|
|
2531
|
-
this.
|
|
2532
|
-
this.
|
|
2537
|
+
this.a3.deregisterColumn(this.bb);
|
|
2538
|
+
this.bb = null;
|
|
2533
2539
|
break;
|
|
2534
2540
|
}
|
|
2535
2541
|
}
|
|
2536
2542
|
if (c != null && typeCast(FastItemsSource.$, c) !== null) {
|
|
2537
|
-
if (this.
|
|
2538
|
-
this.
|
|
2543
|
+
if (this.cs != null) {
|
|
2544
|
+
this.bb = this.be(c, this.cs);
|
|
2539
2545
|
}
|
|
2540
2546
|
}
|
|
2541
2547
|
if (c != null && typeof c === 'string') {
|
|
2542
2548
|
switch (a) {
|
|
2543
2549
|
case XamFunnelChart.$$p[8]:
|
|
2544
|
-
this.
|
|
2550
|
+
this.bb = this.be(this.a3, this.cs);
|
|
2545
2551
|
break;
|
|
2546
2552
|
}
|
|
2547
2553
|
}
|
|
2548
|
-
this.
|
|
2554
|
+
this.ep();
|
|
2549
2555
|
}
|
|
2550
|
-
|
|
2556
|
+
bm(a, b, c) {
|
|
2551
2557
|
if (a == XamFunnelChart.$$p[10] || a == XamFunnelChart.$$p[19]) {
|
|
2552
2558
|
let d = EnumUtil.getEnumValue(Visibility_$type, b) == 0;
|
|
2553
2559
|
let e = EnumUtil.getEnumValue(Visibility_$type, c) == 0;
|
|
2554
|
-
this.
|
|
2560
|
+
this.as.i(((() => {
|
|
2555
2561
|
let $ret = new PropertyChangedMessage();
|
|
2556
2562
|
$ret.g = a;
|
|
2557
2563
|
$ret.d = e;
|
|
@@ -2562,7 +2568,7 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2562
2568
|
}
|
|
2563
2569
|
return false;
|
|
2564
2570
|
}
|
|
2565
|
-
|
|
2571
|
+
bl(a, b, c) {
|
|
2566
2572
|
if (a == XamFunnelChart.$$p[24]) {
|
|
2567
2573
|
let d = new PropertyChangedMessage();
|
|
2568
2574
|
d.g = a;
|
|
@@ -2572,24 +2578,24 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2572
2578
|
if (c != null) {
|
|
2573
2579
|
d.d = c;
|
|
2574
2580
|
}
|
|
2575
|
-
this.
|
|
2581
|
+
this.as.i(d);
|
|
2576
2582
|
return true;
|
|
2577
2583
|
}
|
|
2578
2584
|
return false;
|
|
2579
2585
|
}
|
|
2580
|
-
|
|
2586
|
+
em(a) {
|
|
2581
2587
|
let b = a;
|
|
2582
2588
|
if (this.sliceClicked != null) {
|
|
2583
2589
|
let c = new FunnelSliceClickedEventArgs();
|
|
2584
2590
|
c.index = b.c;
|
|
2585
2591
|
c.bounds = b.f;
|
|
2586
|
-
if (this.
|
|
2587
|
-
c.item = this.
|
|
2592
|
+
if (this.a2.count > b.c && b.c >= 0) {
|
|
2593
|
+
c.item = this.a2.item(b.c);
|
|
2588
2594
|
}
|
|
2589
2595
|
this.sliceClicked(this, c);
|
|
2590
2596
|
}
|
|
2591
2597
|
}
|
|
2592
|
-
|
|
2598
|
+
en(a) {
|
|
2593
2599
|
let b = a;
|
|
2594
2600
|
switch (b.c) {
|
|
2595
2601
|
case 1:
|
|
@@ -2598,8 +2604,8 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2598
2604
|
let c = new FunnelSliceEventArgs();
|
|
2599
2605
|
c.index = b.e;
|
|
2600
2606
|
c.bounds = b.i;
|
|
2601
|
-
if (this.
|
|
2602
|
-
c.item = this.
|
|
2607
|
+
if (this.a2.count > b.e && b.e >= 0) {
|
|
2608
|
+
c.item = this.a2.item(b.e);
|
|
2603
2609
|
}
|
|
2604
2610
|
this.sliceEnter(this, c);
|
|
2605
2611
|
}
|
|
@@ -2611,8 +2617,8 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2611
2617
|
let d = new FunnelSliceEventArgs();
|
|
2612
2618
|
d.index = b.e;
|
|
2613
2619
|
d.bounds = b.i;
|
|
2614
|
-
if (this.
|
|
2615
|
-
d.item = this.
|
|
2620
|
+
if (this.a2.count > b.e && b.e >= 0) {
|
|
2621
|
+
d.item = this.a2.item(b.e);
|
|
2616
2622
|
}
|
|
2617
2623
|
this.sliceLeave(this, d);
|
|
2618
2624
|
}
|
|
@@ -2625,8 +2631,8 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2625
2631
|
e.index = b.e;
|
|
2626
2632
|
e.bounds = b.i;
|
|
2627
2633
|
e.position = b.h;
|
|
2628
|
-
if (this.
|
|
2629
|
-
e.item = this.
|
|
2634
|
+
if (this.a2.count > b.e && b.e >= 0) {
|
|
2635
|
+
e.item = this.a2.item(b.e);
|
|
2630
2636
|
}
|
|
2631
2637
|
this.sliceHover(this, e);
|
|
2632
2638
|
}
|
|
@@ -2634,11 +2640,54 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2634
2640
|
}
|
|
2635
2641
|
}
|
|
2636
2642
|
}
|
|
2637
|
-
|
|
2643
|
+
ej(a) {
|
|
2644
|
+
let b = a;
|
|
2645
|
+
let c = this.a2;
|
|
2646
|
+
let d = new Dictionary$2(Base.$, Base.$, 0);
|
|
2647
|
+
let e = new List$1(Base.$, 0);
|
|
2648
|
+
let h = b.c;
|
|
2649
|
+
for (let g = 0; g < h.length; g++) {
|
|
2650
|
+
let f = h[g];
|
|
2651
|
+
if (f >= 0 && f < c.count) {
|
|
2652
|
+
let i = c.item(f);
|
|
2653
|
+
e.add1(i);
|
|
2654
|
+
if (!d.containsKey(i)) {
|
|
2655
|
+
d.addItem(i, i);
|
|
2656
|
+
}
|
|
2657
|
+
}
|
|
2658
|
+
}
|
|
2659
|
+
this.d4(this.ak.ae, this.br, e, d);
|
|
2638
2660
|
}
|
|
2639
|
-
|
|
2661
|
+
ei(a, b) {
|
|
2662
|
+
let c = new List$1(Number_$type, 0);
|
|
2663
|
+
for (let d of fromEnum(this.ak.ae)) {
|
|
2664
|
+
let e = this.a2.indexOf(d);
|
|
2665
|
+
if (e >= 0 && !c.contains(e)) {
|
|
2666
|
+
c.add(e);
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
let f = new UserSelectedItemsChangedMessage();
|
|
2670
|
+
f.c = c.toArray();
|
|
2671
|
+
this.as.i(f);
|
|
2672
|
+
if (b.action == 4 && b.newItems == null && b.oldItems == null) {
|
|
2673
|
+
return;
|
|
2674
|
+
}
|
|
2675
|
+
let g = new FunnelChartSelectedItemsCollection();
|
|
2676
|
+
if (b.oldItems != null) {
|
|
2677
|
+
for (let h = 0; h < b.oldItems.count; h++) {
|
|
2678
|
+
g.add1(b.oldItems.item(h));
|
|
2679
|
+
}
|
|
2680
|
+
}
|
|
2681
|
+
let i = new FunnelChartSelectedItemsCollection();
|
|
2682
|
+
if (b.newItems != null) {
|
|
2683
|
+
for (let j = 0; j < b.newItems.count; j++) {
|
|
2684
|
+
i.add1(b.newItems.item(j));
|
|
2685
|
+
}
|
|
2686
|
+
}
|
|
2687
|
+
let k = this.selectedItems;
|
|
2688
|
+
this.ef(this, new FunnelChartSelectedItemsChangedEventArgs(g, i, k));
|
|
2640
2689
|
}
|
|
2641
|
-
|
|
2690
|
+
d4(a, b, c, d) {
|
|
2642
2691
|
let e = new List$1(Base.$, 0);
|
|
2643
2692
|
for (let f of fromEnum(a)) {
|
|
2644
2693
|
if (!d.containsKey(f)) {
|
|
@@ -2657,65 +2706,65 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2657
2706
|
}
|
|
2658
2707
|
}
|
|
2659
2708
|
getItem(a) {
|
|
2660
|
-
return this.
|
|
2709
|
+
return this.a2.item(a);
|
|
2661
2710
|
}
|
|
2662
2711
|
get count() {
|
|
2663
|
-
return this.
|
|
2712
|
+
return this.a2 != null ? this.a2.count : 0;
|
|
2664
2713
|
}
|
|
2665
|
-
|
|
2666
|
-
this.
|
|
2714
|
+
d0() {
|
|
2715
|
+
this.a0.i();
|
|
2667
2716
|
}
|
|
2668
2717
|
provideContainer(a) {
|
|
2669
|
-
let b = this.
|
|
2670
|
-
this.
|
|
2671
|
-
this.
|
|
2718
|
+
let b = this.cc;
|
|
2719
|
+
this.cc = a;
|
|
2720
|
+
this.ee("Container", b, this.cc);
|
|
2672
2721
|
}
|
|
2673
2722
|
notifyResized() {
|
|
2674
|
-
this.
|
|
2675
|
-
this.
|
|
2723
|
+
this.a0.g();
|
|
2724
|
+
this.as.i(new ContainerSizeChangedMessage());
|
|
2676
2725
|
}
|
|
2677
|
-
|
|
2678
|
-
this.
|
|
2726
|
+
eb(source_, a, b, c) {
|
|
2727
|
+
this.d7(source_, new NotifyCollectionChangedEventArgs(2, 2, c, b, a));
|
|
2679
2728
|
}
|
|
2680
|
-
|
|
2681
|
-
this.
|
|
2682
|
-
}
|
|
2683
|
-
d7(source_, a, b) {
|
|
2684
|
-
this.d6(source_, new NotifyCollectionChangedEventArgs(1, 0, b, a));
|
|
2729
|
+
d6(source_) {
|
|
2730
|
+
this.d7(source_, new NotifyCollectionChangedEventArgs(0, 4));
|
|
2685
2731
|
}
|
|
2686
2732
|
d8(source_, a, b) {
|
|
2687
|
-
this.
|
|
2733
|
+
this.d7(source_, new NotifyCollectionChangedEventArgs(1, 0, b, a));
|
|
2734
|
+
}
|
|
2735
|
+
d9(source_, a, b) {
|
|
2736
|
+
this.d7(source_, new NotifyCollectionChangedEventArgs(1, 1, b, a));
|
|
2688
2737
|
}
|
|
2689
|
-
|
|
2738
|
+
d7(s_, a) {
|
|
2690
2739
|
if (s_.dataView && s_.dataSource) {
|
|
2691
2740
|
s_ = s_.dataView();
|
|
2692
2741
|
}
|
|
2693
2742
|
;
|
|
2694
2743
|
if (s_ == this.itemsSource) {
|
|
2695
|
-
let b = this.
|
|
2744
|
+
let b = this.a2;
|
|
2696
2745
|
if (b != null) {
|
|
2697
2746
|
b.handleCollectionChanged(a);
|
|
2698
2747
|
}
|
|
2699
2748
|
}
|
|
2700
2749
|
}
|
|
2701
|
-
|
|
2702
|
-
let a = this.
|
|
2750
|
+
a1() {
|
|
2751
|
+
let a = this.a0;
|
|
2703
2752
|
return a == null ? null : a.c;
|
|
2704
2753
|
}
|
|
2705
|
-
|
|
2706
|
-
let a = this.
|
|
2754
|
+
ay() {
|
|
2755
|
+
let a = this.a1();
|
|
2707
2756
|
return a == null ? null : a.ai;
|
|
2708
2757
|
}
|
|
2709
2758
|
get ag() {
|
|
2710
|
-
let a = this.
|
|
2759
|
+
let a = this.ay();
|
|
2711
2760
|
return a == null ? null : a.a();
|
|
2712
2761
|
}
|
|
2713
2762
|
set ag(a) {
|
|
2714
|
-
let b = this.
|
|
2763
|
+
let b = this.ay();
|
|
2715
2764
|
if (b == null) {
|
|
2716
2765
|
return;
|
|
2717
2766
|
}
|
|
2718
|
-
let c = this.
|
|
2767
|
+
let c = this.a1();
|
|
2719
2768
|
b.f();
|
|
2720
2769
|
let d = a == null ? 0 : a.length;
|
|
2721
2770
|
while (d-- > 0) {
|
|
@@ -2724,12 +2773,12 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2724
2773
|
c.bl = true;
|
|
2725
2774
|
c.dj();
|
|
2726
2775
|
}
|
|
2727
|
-
|
|
2728
|
-
let b = this.
|
|
2776
|
+
eo(a) {
|
|
2777
|
+
let b = this.ay();
|
|
2729
2778
|
if (b == null) {
|
|
2730
2779
|
return;
|
|
2731
2780
|
}
|
|
2732
|
-
let c = this.
|
|
2781
|
+
let c = this.a1();
|
|
2733
2782
|
let d = c.ao.a.item(a);
|
|
2734
2783
|
if (d != null) {
|
|
2735
2784
|
c.ai.k(a, d);
|
|
@@ -2737,9 +2786,9 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2737
2786
|
c.dj();
|
|
2738
2787
|
}
|
|
2739
2788
|
}
|
|
2740
|
-
|
|
2789
|
+
az() {
|
|
2741
2790
|
let a = new FunnelChartVisualData();
|
|
2742
|
-
let b = this.
|
|
2791
|
+
let b = this.a0.c.ag;
|
|
2743
2792
|
if (b != null) {
|
|
2744
2793
|
for (let c = 0; c < b.count; c++) {
|
|
2745
2794
|
let d = b._inner[c].d();
|
|
@@ -2747,14 +2796,14 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2747
2796
|
}
|
|
2748
2797
|
}
|
|
2749
2798
|
a.opacity = this._opacity;
|
|
2750
|
-
a.isInverted = this.
|
|
2751
|
-
a.selectedItems = this.
|
|
2799
|
+
a.isInverted = this.bn;
|
|
2800
|
+
a.selectedItems = this.selectedItems.ae;
|
|
2752
2801
|
a.name = this.name;
|
|
2753
|
-
a.viewport = new RectData(0, 0, this.
|
|
2802
|
+
a.viewport = new RectData(0, 0, this.a0.c.b8, this.a0.c.b7);
|
|
2754
2803
|
return a;
|
|
2755
2804
|
}
|
|
2756
|
-
|
|
2757
|
-
let a = this.
|
|
2805
|
+
cm() {
|
|
2806
|
+
let a = this.az();
|
|
2758
2807
|
a.scaleByViewport();
|
|
2759
2808
|
return a.serialize();
|
|
2760
2809
|
}
|
|
@@ -2763,25 +2812,25 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2763
2812
|
}
|
|
2764
2813
|
forSubItems(a) {
|
|
2765
2814
|
}
|
|
2766
|
-
get
|
|
2767
|
-
return this.
|
|
2815
|
+
get b4() {
|
|
2816
|
+
return this.bw;
|
|
2768
2817
|
}
|
|
2769
|
-
set
|
|
2818
|
+
set b4(a) {
|
|
2770
2819
|
if (isNaN_(a) || a == 0) {
|
|
2771
2820
|
return;
|
|
2772
2821
|
}
|
|
2773
|
-
let b = this.
|
|
2774
|
-
this.
|
|
2775
|
-
this.
|
|
2822
|
+
let b = this.bw;
|
|
2823
|
+
this.bw = a;
|
|
2824
|
+
this.ee("PixelScalingRatio", b, this.bw);
|
|
2776
2825
|
}
|
|
2777
|
-
get
|
|
2778
|
-
return this.
|
|
2826
|
+
get by() {
|
|
2827
|
+
return this.bv;
|
|
2779
2828
|
}
|
|
2780
|
-
set
|
|
2781
|
-
let b = this.
|
|
2782
|
-
this.
|
|
2783
|
-
if (this.
|
|
2784
|
-
this.
|
|
2829
|
+
set by(a) {
|
|
2830
|
+
let b = this.bv;
|
|
2831
|
+
this.bv = a;
|
|
2832
|
+
if (this.bv != b) {
|
|
2833
|
+
this.ee("ActualPixelScalingRatio", b, this.bv);
|
|
2785
2834
|
}
|
|
2786
2835
|
}
|
|
2787
2836
|
get container() {
|
|
@@ -2802,30 +2851,30 @@ export let XamFunnelChart = /*@__PURE__*/ (() => {
|
|
|
2802
2851
|
get hasMarkers() {
|
|
2803
2852
|
return false;
|
|
2804
2853
|
}
|
|
2805
|
-
get
|
|
2806
|
-
return this.
|
|
2854
|
+
get fp() {
|
|
2855
|
+
return this.fn;
|
|
2807
2856
|
}
|
|
2808
|
-
set
|
|
2809
|
-
let b = this.
|
|
2857
|
+
set fp(a) {
|
|
2858
|
+
let b = this.fp;
|
|
2810
2859
|
if (a != b) {
|
|
2811
|
-
this.
|
|
2812
|
-
this.
|
|
2860
|
+
this.fn = a;
|
|
2861
|
+
this.ee("OuterLabelTextColor", b, this.fp);
|
|
2813
2862
|
}
|
|
2814
2863
|
}
|
|
2815
|
-
get
|
|
2816
|
-
return this.
|
|
2864
|
+
get fq() {
|
|
2865
|
+
return this.fo;
|
|
2817
2866
|
}
|
|
2818
|
-
set
|
|
2819
|
-
let b = this.
|
|
2867
|
+
set fq(a) {
|
|
2868
|
+
let b = this.fq;
|
|
2820
2869
|
if (a != b) {
|
|
2821
|
-
this.
|
|
2822
|
-
this.
|
|
2870
|
+
this.fo = a;
|
|
2871
|
+
this.ee("LabelTextColor", b, this.fq);
|
|
2823
2872
|
}
|
|
2824
2873
|
}
|
|
2825
2874
|
}
|
|
2826
2875
|
XamFunnelChart.$t = /*@__PURE__*/ markType(XamFunnelChart, 'XamFunnelChart', Control.$, [IItemProvider_$type, ILegendOwner_$type, ILegendTemplateProvider_$type, ILegendSeries_$type]);
|
|
2827
|
-
XamFunnelChart.
|
|
2828
|
-
XamFunnelChart.$$p = /*@__PURE__*/ markDep(DependencyProperty, PropertyMetadata, XamFunnelChart, '
|
|
2876
|
+
XamFunnelChart.ez = /*@__PURE__*/ DependencyProperty.i("HighlightValueDisplayMode", HighlightedValueDisplayMode_$type, XamFunnelChart.$, /*@__PURE__*/ new PropertyMetadata(2, /*@__PURE__*/ enumGetBox(HighlightedValueDisplayMode_$type, 0), (a, b) => a.ee("HighlightValueDisplayMode", b.oldValue, b.newValue)));
|
|
2877
|
+
XamFunnelChart.$$p = /*@__PURE__*/ markDep(DependencyProperty, PropertyMetadata, XamFunnelChart, 'ee', ['AllowSliceSelection:bh:er', [0, false], 'BottomEdgeWidth:bz:es', [1, 0.35], 'Brushes:ah:et', [BrushCollection.$, null], 'FastItemsSource:a2:eu', [FastItemsSource.$], 'FunnelSliceDisplay:an:ev', [FunnelSliceDisplay_$type, /*@__PURE__*/ enumGetBox(FunnelSliceDisplay_$type, 0)], 'HighlightFastItemsSource:a3:ey', [FastItemsSource.$], 'HighlightValueOpacity:b1:e0', [1, 0.5], 'HighlightedItemsSource::ew', [IEnumerable_$type, null], 'HighlightedValueMemberPath:cs:ex', [2, null], 'InnerLabelMemberPath:cz:e1', [2, null], 'InnerLabelVisibility:fv:e2', [Visibility_$type, /*@__PURE__*/ enumGetBox(Visibility_$type, 0)], 'IsInverted:bn:e3', [0, false], 'ItemsSource::e4', [IEnumerable_$type, null], 'LegendItemBadgeTemplate::e5', [DataTemplate.$, null], 'LegendItemTemplate::e6', [DataTemplate.$, null], 'Legend::e7', [IChartLegend_$type, null], 'LowerBezierControlPoint:fr:e8', [Point_$type, { $type: Point_$type, x: 0.5, y: 1 }], 'OuterLabelAlignment:ax:e9', [OuterLabelAlignment_$type, /*@__PURE__*/ enumGetBox(OuterLabelAlignment_$type, 0)], 'OuterLabelMemberPath:da:fa', [2, null], 'OuterLabelVisibility:fw:fb', [Visibility_$type, /*@__PURE__*/ enumGetBox(Visibility_$type, 1)], 'OutlineThickness:b2:fd', [1, -1], 'Outlines:ai:fc', [BrushCollection.$, null], 'SelectedSliceStyle:ft:fe', [Style.$, null], 'ToolTip:cd:ff', [4, null], 'TransitionDuration:cb:fg', [1, 0], 'UnselectedSliceStyle:fu:fh', [Style.$, null], 'UpperBezierControlPoint:fs:fi', [Point_$type, { $type: Point_$type, x: 0.5, y: 0 }], 'UseBezierCurve:bo:fj', [0, false], 'UseOuterLabelsForLegend:bp:fk', [0, false], 'UseUnselectedStyle:bq:fl', [0, false], 'ValueMemberPath:dw:fm', [2, null]]);
|
|
2829
2878
|
return XamFunnelChart;
|
|
2830
2879
|
})();
|
|
2831
2880
|
/**
|
|
@@ -2859,7 +2908,7 @@ export let XamFunnelConnector = /*@__PURE__*/ (() => {
|
|
|
2859
2908
|
a.i = c;
|
|
2860
2909
|
this.b = d;
|
|
2861
2910
|
this.d = a;
|
|
2862
|
-
b.
|
|
2911
|
+
b.aw = c;
|
|
2863
2912
|
this.a = b;
|
|
2864
2913
|
c.c("Model", this.a);
|
|
2865
2914
|
}
|