@unovis/angular 1.3.1 → 1.3.2-beta.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/dist/lib/bundles/unovis-angular.umd.js +685 -585
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/chord-diagram/chord-diagram.component.d.ts +91 -0
- package/dist/lib/components/chord-diagram/chord-diagram.module.d.ts +7 -0
- package/dist/lib/components.d.ts +12 -10
- package/dist/lib/esm2015/components/chord-diagram/chord-diagram.component.js +79 -0
- package/dist/lib/esm2015/components/chord-diagram/chord-diagram.module.js +18 -0
- package/dist/lib/esm2015/components.js +13 -11
- package/dist/lib/fesm2015/unovis-angular.js +610 -520
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, Input, ViewChild, ContentChildren, ContentChild, NgModule } from '@angular/core';
|
|
3
|
-
import { Tooltip, Direction, XYContainer, Crosshair, Axis, SingleContainer,
|
|
3
|
+
import { Tooltip, Direction, XYContainer, Crosshair, Axis, SingleContainer, Area, Brush, ChordDiagram, Donut, FreeBrush, Graph, GroupedBar, Line, NestedDonut, Sankey, Scatter, StackedBar, Timeline, XYLabels, TopoJSONMap, LeafletMap, LeafletFlowMap, BulletLegend } from '@unovis/ts';
|
|
4
4
|
|
|
5
5
|
class VisGenericComponent {
|
|
6
6
|
}
|
|
@@ -318,94 +318,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
318
318
|
}]
|
|
319
319
|
}] });
|
|
320
320
|
|
|
321
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
322
|
-
class VisLineComponent {
|
|
323
|
-
ngAfterViewInit() {
|
|
324
|
-
var _a;
|
|
325
|
-
this.component = new Line(this.getConfig());
|
|
326
|
-
if (this.data) {
|
|
327
|
-
this.component.setData(this.data);
|
|
328
|
-
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
ngOnChanges(changes) {
|
|
332
|
-
var _a, _b, _c;
|
|
333
|
-
if (changes.data) {
|
|
334
|
-
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
335
|
-
}
|
|
336
|
-
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
337
|
-
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
338
|
-
}
|
|
339
|
-
getConfig() {
|
|
340
|
-
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, lineWidth, lineDashArray, fallbackValue, highlightOnHover, cursor } = this;
|
|
341
|
-
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, lineWidth, lineDashArray, fallbackValue, highlightOnHover, cursor };
|
|
342
|
-
const keys = Object.keys(config);
|
|
343
|
-
keys.forEach(key => { if (config[key] === undefined)
|
|
344
|
-
delete config[key]; });
|
|
345
|
-
return config;
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
VisLineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
349
|
-
VisLineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisLineComponent, selector: "vis-line", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", lineWidth: "lineWidth", lineDashArray: "lineDashArray", fallbackValue: "fallbackValue", highlightOnHover: "highlightOnHover", cursor: "cursor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineComponent, decorators: [{
|
|
351
|
-
type: Component,
|
|
352
|
-
args: [{
|
|
353
|
-
selector: 'vis-line',
|
|
354
|
-
template: '',
|
|
355
|
-
// eslint-disable-next-line no-use-before-define
|
|
356
|
-
providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }],
|
|
357
|
-
}]
|
|
358
|
-
}], propDecorators: { duration: [{
|
|
359
|
-
type: Input
|
|
360
|
-
}], events: [{
|
|
361
|
-
type: Input
|
|
362
|
-
}], attributes: [{
|
|
363
|
-
type: Input
|
|
364
|
-
}], x: [{
|
|
365
|
-
type: Input
|
|
366
|
-
}], y: [{
|
|
367
|
-
type: Input
|
|
368
|
-
}], id: [{
|
|
369
|
-
type: Input
|
|
370
|
-
}], color: [{
|
|
371
|
-
type: Input
|
|
372
|
-
}], xScale: [{
|
|
373
|
-
type: Input
|
|
374
|
-
}], yScale: [{
|
|
375
|
-
type: Input
|
|
376
|
-
}], excludeFromDomainCalculation: [{
|
|
377
|
-
type: Input
|
|
378
|
-
}], curveType: [{
|
|
379
|
-
type: Input
|
|
380
|
-
}], lineWidth: [{
|
|
381
|
-
type: Input
|
|
382
|
-
}], lineDashArray: [{
|
|
383
|
-
type: Input
|
|
384
|
-
}], fallbackValue: [{
|
|
385
|
-
type: Input
|
|
386
|
-
}], highlightOnHover: [{
|
|
387
|
-
type: Input
|
|
388
|
-
}], cursor: [{
|
|
389
|
-
type: Input
|
|
390
|
-
}], data: [{
|
|
391
|
-
type: Input
|
|
392
|
-
}] } });
|
|
393
|
-
|
|
394
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
395
|
-
class VisLineModule {
|
|
396
|
-
}
|
|
397
|
-
VisLineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
398
|
-
VisLineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, declarations: [VisLineComponent], exports: [VisLineComponent] });
|
|
399
|
-
VisLineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, imports: [[]] });
|
|
400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, decorators: [{
|
|
401
|
-
type: NgModule,
|
|
402
|
-
args: [{
|
|
403
|
-
imports: [],
|
|
404
|
-
declarations: [VisLineComponent],
|
|
405
|
-
exports: [VisLineComponent],
|
|
406
|
-
}]
|
|
407
|
-
}] });
|
|
408
|
-
|
|
409
321
|
// !!! This code was automatically generated. You should not change it !!!
|
|
410
322
|
class VisAreaComponent {
|
|
411
323
|
ngAfterViewInit() {
|
|
@@ -681,10 +593,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
681
593
|
}] });
|
|
682
594
|
|
|
683
595
|
// !!! This code was automatically generated. You should not change it !!!
|
|
684
|
-
class
|
|
596
|
+
class VisChordDiagramComponent {
|
|
685
597
|
ngAfterViewInit() {
|
|
686
598
|
var _a;
|
|
687
|
-
this.component = new
|
|
599
|
+
this.component = new ChordDiagram(this.getConfig());
|
|
688
600
|
if (this.data) {
|
|
689
601
|
this.component.setData(this.data);
|
|
690
602
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -699,23 +611,23 @@ class VisFreeBrushComponent {
|
|
|
699
611
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
700
612
|
}
|
|
701
613
|
getConfig() {
|
|
702
|
-
const { duration, events, attributes,
|
|
703
|
-
const config = { duration, events, attributes,
|
|
614
|
+
const { duration, events, attributes, highlightedNodeId, highlightedLinkIds, linkColor, linkValue, nodeLevels, nodeWidth, nodeColor, nodeLabel, nodeLabelColor, nodeLabelAlignment, padAngle, cornerRadius, angleRange, radiusScaleExponent } = this;
|
|
615
|
+
const config = { duration, events, attributes, highlightedNodeId, highlightedLinkIds, linkColor, linkValue, nodeLevels, nodeWidth, nodeColor, nodeLabel, nodeLabelColor, nodeLabelAlignment, padAngle, cornerRadius, angleRange, radiusScaleExponent };
|
|
704
616
|
const keys = Object.keys(config);
|
|
705
617
|
keys.forEach(key => { if (config[key] === undefined)
|
|
706
618
|
delete config[key]; });
|
|
707
619
|
return config;
|
|
708
620
|
}
|
|
709
621
|
}
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
622
|
+
VisChordDiagramComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisChordDiagramComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
623
|
+
VisChordDiagramComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisChordDiagramComponent, selector: "vis-chord-diagram", inputs: { duration: "duration", events: "events", attributes: "attributes", highlightedNodeId: "highlightedNodeId", highlightedLinkIds: "highlightedLinkIds", linkColor: "linkColor", linkValue: "linkValue", nodeLevels: "nodeLevels", nodeWidth: "nodeWidth", nodeColor: "nodeColor", nodeLabel: "nodeLabel", nodeLabelColor: "nodeLabelColor", nodeLabelAlignment: "nodeLabelAlignment", padAngle: "padAngle", cornerRadius: "cornerRadius", angleRange: "angleRange", radiusScaleExponent: "radiusScaleExponent", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisChordDiagramComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisChordDiagramComponent, decorators: [{
|
|
713
625
|
type: Component,
|
|
714
626
|
args: [{
|
|
715
|
-
selector: 'vis-
|
|
627
|
+
selector: 'vis-chord-diagram',
|
|
716
628
|
template: '',
|
|
717
629
|
// eslint-disable-next-line no-use-before-define
|
|
718
|
-
providers: [{ provide:
|
|
630
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisChordDiagramComponent }],
|
|
719
631
|
}]
|
|
720
632
|
}], propDecorators: { duration: [{
|
|
721
633
|
type: Input
|
|
@@ -723,40 +635,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
723
635
|
type: Input
|
|
724
636
|
}], attributes: [{
|
|
725
637
|
type: Input
|
|
726
|
-
}],
|
|
638
|
+
}], highlightedNodeId: [{
|
|
727
639
|
type: Input
|
|
728
|
-
}],
|
|
640
|
+
}], highlightedLinkIds: [{
|
|
729
641
|
type: Input
|
|
730
|
-
}],
|
|
642
|
+
}], linkColor: [{
|
|
731
643
|
type: Input
|
|
732
|
-
}],
|
|
644
|
+
}], linkValue: [{
|
|
733
645
|
type: Input
|
|
734
|
-
}],
|
|
646
|
+
}], nodeLevels: [{
|
|
735
647
|
type: Input
|
|
736
|
-
}],
|
|
648
|
+
}], nodeWidth: [{
|
|
737
649
|
type: Input
|
|
738
|
-
}],
|
|
650
|
+
}], nodeColor: [{
|
|
739
651
|
type: Input
|
|
740
|
-
}],
|
|
652
|
+
}], nodeLabel: [{
|
|
741
653
|
type: Input
|
|
742
|
-
}],
|
|
654
|
+
}], nodeLabelColor: [{
|
|
655
|
+
type: Input
|
|
656
|
+
}], nodeLabelAlignment: [{
|
|
657
|
+
type: Input
|
|
658
|
+
}], padAngle: [{
|
|
659
|
+
type: Input
|
|
660
|
+
}], cornerRadius: [{
|
|
661
|
+
type: Input
|
|
662
|
+
}], angleRange: [{
|
|
663
|
+
type: Input
|
|
664
|
+
}], radiusScaleExponent: [{
|
|
743
665
|
type: Input
|
|
744
666
|
}], data: [{
|
|
745
667
|
type: Input
|
|
746
668
|
}] } });
|
|
747
669
|
|
|
748
670
|
// !!! This code was automatically generated. You should not change it !!!
|
|
749
|
-
class
|
|
671
|
+
class VisChordDiagramModule {
|
|
750
672
|
}
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
673
|
+
VisChordDiagramModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisChordDiagramModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
674
|
+
VisChordDiagramModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisChordDiagramModule, declarations: [VisChordDiagramComponent], exports: [VisChordDiagramComponent] });
|
|
675
|
+
VisChordDiagramModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisChordDiagramModule, imports: [[]] });
|
|
676
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisChordDiagramModule, decorators: [{
|
|
755
677
|
type: NgModule,
|
|
756
678
|
args: [{
|
|
757
679
|
imports: [],
|
|
758
|
-
declarations: [
|
|
759
|
-
exports: [
|
|
680
|
+
declarations: [VisChordDiagramComponent],
|
|
681
|
+
exports: [VisChordDiagramComponent],
|
|
760
682
|
}]
|
|
761
683
|
}] });
|
|
762
684
|
|
|
@@ -947,10 +869,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
947
869
|
}] });
|
|
948
870
|
|
|
949
871
|
// !!! This code was automatically generated. You should not change it !!!
|
|
950
|
-
class
|
|
872
|
+
class VisFreeBrushComponent {
|
|
951
873
|
ngAfterViewInit() {
|
|
952
874
|
var _a;
|
|
953
|
-
this.component = new
|
|
875
|
+
this.component = new FreeBrush(this.getConfig());
|
|
954
876
|
if (this.data) {
|
|
955
877
|
this.component.setData(this.data);
|
|
956
878
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -965,23 +887,23 @@ class VisGroupedBarComponent {
|
|
|
965
887
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
966
888
|
}
|
|
967
889
|
getConfig() {
|
|
968
|
-
const { duration, events, attributes,
|
|
969
|
-
const config = { duration, events, attributes,
|
|
890
|
+
const { duration, events, attributes, mode, onBrush, onBrushStart, onBrushMove, onBrushEnd, handleWidth, selection, selectionMinLength, autoHide } = this;
|
|
891
|
+
const config = { duration, events, attributes, mode, onBrush, onBrushStart, onBrushMove, onBrushEnd, handleWidth, selection, selectionMinLength, autoHide };
|
|
970
892
|
const keys = Object.keys(config);
|
|
971
893
|
keys.forEach(key => { if (config[key] === undefined)
|
|
972
894
|
delete config[key]; });
|
|
973
895
|
return config;
|
|
974
896
|
}
|
|
975
897
|
}
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
898
|
+
VisFreeBrushComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFreeBrushComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
899
|
+
VisFreeBrushComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisFreeBrushComponent, selector: "vis-free-brush", inputs: { duration: "duration", events: "events", attributes: "attributes", mode: "mode", onBrush: "onBrush", onBrushStart: "onBrushStart", onBrushMove: "onBrushMove", onBrushEnd: "onBrushEnd", handleWidth: "handleWidth", selection: "selection", selectionMinLength: "selectionMinLength", autoHide: "autoHide", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisFreeBrushComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
900
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFreeBrushComponent, decorators: [{
|
|
979
901
|
type: Component,
|
|
980
902
|
args: [{
|
|
981
|
-
selector: 'vis-
|
|
903
|
+
selector: 'vis-free-brush',
|
|
982
904
|
template: '',
|
|
983
905
|
// eslint-disable-next-line no-use-before-define
|
|
984
|
-
providers: [{ provide: VisXYComponent, useExisting:
|
|
906
|
+
providers: [{ provide: VisXYComponent, useExisting: VisFreeBrushComponent }],
|
|
985
907
|
}]
|
|
986
908
|
}], propDecorators: { duration: [{
|
|
987
909
|
type: Input
|
|
@@ -989,62 +911,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
989
911
|
type: Input
|
|
990
912
|
}], attributes: [{
|
|
991
913
|
type: Input
|
|
992
|
-
}],
|
|
993
|
-
type: Input
|
|
994
|
-
}], y: [{
|
|
995
|
-
type: Input
|
|
996
|
-
}], id: [{
|
|
997
|
-
type: Input
|
|
998
|
-
}], color: [{
|
|
999
|
-
type: Input
|
|
1000
|
-
}], xScale: [{
|
|
1001
|
-
type: Input
|
|
1002
|
-
}], yScale: [{
|
|
1003
|
-
type: Input
|
|
1004
|
-
}], excludeFromDomainCalculation: [{
|
|
1005
|
-
type: Input
|
|
1006
|
-
}], groupWidth: [{
|
|
914
|
+
}], mode: [{
|
|
1007
915
|
type: Input
|
|
1008
|
-
}],
|
|
916
|
+
}], onBrush: [{
|
|
1009
917
|
type: Input
|
|
1010
|
-
}],
|
|
918
|
+
}], onBrushStart: [{
|
|
1011
919
|
type: Input
|
|
1012
|
-
}],
|
|
920
|
+
}], onBrushMove: [{
|
|
1013
921
|
type: Input
|
|
1014
|
-
}],
|
|
922
|
+
}], onBrushEnd: [{
|
|
1015
923
|
type: Input
|
|
1016
|
-
}],
|
|
924
|
+
}], handleWidth: [{
|
|
1017
925
|
type: Input
|
|
1018
|
-
}],
|
|
926
|
+
}], selection: [{
|
|
1019
927
|
type: Input
|
|
1020
|
-
}],
|
|
928
|
+
}], selectionMinLength: [{
|
|
1021
929
|
type: Input
|
|
1022
|
-
}],
|
|
930
|
+
}], autoHide: [{
|
|
1023
931
|
type: Input
|
|
1024
932
|
}], data: [{
|
|
1025
933
|
type: Input
|
|
1026
934
|
}] } });
|
|
1027
935
|
|
|
1028
936
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1029
|
-
class
|
|
937
|
+
class VisFreeBrushModule {
|
|
1030
938
|
}
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
939
|
+
VisFreeBrushModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFreeBrushModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
940
|
+
VisFreeBrushModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFreeBrushModule, declarations: [VisFreeBrushComponent], exports: [VisFreeBrushComponent] });
|
|
941
|
+
VisFreeBrushModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFreeBrushModule, imports: [[]] });
|
|
942
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisFreeBrushModule, decorators: [{
|
|
1035
943
|
type: NgModule,
|
|
1036
944
|
args: [{
|
|
1037
945
|
imports: [],
|
|
1038
|
-
declarations: [
|
|
1039
|
-
exports: [
|
|
946
|
+
declarations: [VisFreeBrushComponent],
|
|
947
|
+
exports: [VisFreeBrushComponent],
|
|
1040
948
|
}]
|
|
1041
949
|
}] });
|
|
1042
950
|
|
|
1043
951
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1044
|
-
class
|
|
952
|
+
class VisGraphComponent {
|
|
1045
953
|
ngAfterViewInit() {
|
|
1046
954
|
var _a;
|
|
1047
|
-
this.component = new
|
|
955
|
+
this.component = new Graph(this.getConfig());
|
|
1048
956
|
if (this.data) {
|
|
1049
957
|
this.component.setData(this.data);
|
|
1050
958
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -1059,23 +967,23 @@ class VisScatterComponent {
|
|
|
1059
967
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1060
968
|
}
|
|
1061
969
|
getConfig() {
|
|
1062
|
-
const { duration, events, attributes,
|
|
1063
|
-
const config = { duration, events, attributes,
|
|
970
|
+
const { duration, events, attributes, zoomScaleExtent, disableZoom, disableDrag, zoomThrottledUpdateNodeThreshold, onZoom, layoutType, layoutAutofit, layoutAutofitTolerance, layoutNonConnectedAside, layoutNodeGroup, layoutGroupOrder, layoutParallelNodesPerColumn, layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup, forceLayoutSettings, dagreLayoutSettings, layoutElkSettings, layoutElkNodeGroups, linkWidth, linkStyle, linkBandWidth, linkArrow, linkStroke, linkDisabled, linkFlow, linkFlowAnimDuration, linkFlowParticleSize, linkLabel, linkLabelShiftFromCenter, linkNeighborSpacing, selectedLinkId, nodeSize, nodeStrokeWidth, nodeShape, nodeGaugeValue, nodeGaugeFill, nodeGaugeAnimDuration, nodeIcon, nodeIconSize, nodeLabel, nodeLabelTrim, nodeLabelTrimMode, nodeLabelTrimLength, nodeSubLabel, nodeSubLabelTrim, nodeSubLabelTrimMode, nodeSubLabelTrimLength, nodeSideLabels, nodeBottomIcon, nodeDisabled, nodeFill, nodeStroke, nodeSort, nodeEnterPosition, nodeEnterScale, nodeExitPosition, nodeExitScale, selectedNodeId, panels } = this;
|
|
971
|
+
const config = { duration, events, attributes, zoomScaleExtent, disableZoom, disableDrag, zoomThrottledUpdateNodeThreshold, onZoom, layoutType, layoutAutofit, layoutAutofitTolerance, layoutNonConnectedAside, layoutNodeGroup, layoutGroupOrder, layoutParallelNodesPerColumn, layoutParallelNodeSubGroup, layoutParallelSubGroupsPerRow, layoutParallelGroupSpacing, layoutParallelSortConnectionsByGroup, forceLayoutSettings, dagreLayoutSettings, layoutElkSettings, layoutElkNodeGroups, linkWidth, linkStyle, linkBandWidth, linkArrow, linkStroke, linkDisabled, linkFlow, linkFlowAnimDuration, linkFlowParticleSize, linkLabel, linkLabelShiftFromCenter, linkNeighborSpacing, selectedLinkId, nodeSize, nodeStrokeWidth, nodeShape, nodeGaugeValue, nodeGaugeFill, nodeGaugeAnimDuration, nodeIcon, nodeIconSize, nodeLabel, nodeLabelTrim, nodeLabelTrimMode, nodeLabelTrimLength, nodeSubLabel, nodeSubLabelTrim, nodeSubLabelTrimMode, nodeSubLabelTrimLength, nodeSideLabels, nodeBottomIcon, nodeDisabled, nodeFill, nodeStroke, nodeSort, nodeEnterPosition, nodeEnterScale, nodeExitPosition, nodeExitScale, selectedNodeId, panels };
|
|
1064
972
|
const keys = Object.keys(config);
|
|
1065
973
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1066
974
|
delete config[key]; });
|
|
1067
975
|
return config;
|
|
1068
976
|
}
|
|
1069
977
|
}
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
978
|
+
VisGraphComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
979
|
+
VisGraphComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisGraphComponent, selector: "vis-graph", inputs: { duration: "duration", events: "events", attributes: "attributes", zoomScaleExtent: "zoomScaleExtent", disableZoom: "disableZoom", disableDrag: "disableDrag", zoomThrottledUpdateNodeThreshold: "zoomThrottledUpdateNodeThreshold", onZoom: "onZoom", layoutType: "layoutType", layoutAutofit: "layoutAutofit", layoutAutofitTolerance: "layoutAutofitTolerance", layoutNonConnectedAside: "layoutNonConnectedAside", layoutNodeGroup: "layoutNodeGroup", layoutGroupOrder: "layoutGroupOrder", layoutParallelNodesPerColumn: "layoutParallelNodesPerColumn", layoutParallelNodeSubGroup: "layoutParallelNodeSubGroup", layoutParallelSubGroupsPerRow: "layoutParallelSubGroupsPerRow", layoutParallelGroupSpacing: "layoutParallelGroupSpacing", layoutParallelSortConnectionsByGroup: "layoutParallelSortConnectionsByGroup", forceLayoutSettings: "forceLayoutSettings", dagreLayoutSettings: "dagreLayoutSettings", layoutElkSettings: "layoutElkSettings", layoutElkNodeGroups: "layoutElkNodeGroups", linkWidth: "linkWidth", linkStyle: "linkStyle", linkBandWidth: "linkBandWidth", linkArrow: "linkArrow", linkStroke: "linkStroke", linkDisabled: "linkDisabled", linkFlow: "linkFlow", linkFlowAnimDuration: "linkFlowAnimDuration", linkFlowParticleSize: "linkFlowParticleSize", linkLabel: "linkLabel", linkLabelShiftFromCenter: "linkLabelShiftFromCenter", linkNeighborSpacing: "linkNeighborSpacing", selectedLinkId: "selectedLinkId", nodeSize: "nodeSize", nodeStrokeWidth: "nodeStrokeWidth", nodeShape: "nodeShape", nodeGaugeValue: "nodeGaugeValue", nodeGaugeFill: "nodeGaugeFill", nodeGaugeAnimDuration: "nodeGaugeAnimDuration", nodeIcon: "nodeIcon", nodeIconSize: "nodeIconSize", nodeLabel: "nodeLabel", nodeLabelTrim: "nodeLabelTrim", nodeLabelTrimMode: "nodeLabelTrimMode", nodeLabelTrimLength: "nodeLabelTrimLength", nodeSubLabel: "nodeSubLabel", nodeSubLabelTrim: "nodeSubLabelTrim", nodeSubLabelTrimMode: "nodeSubLabelTrimMode", nodeSubLabelTrimLength: "nodeSubLabelTrimLength", nodeSideLabels: "nodeSideLabels", nodeBottomIcon: "nodeBottomIcon", nodeDisabled: "nodeDisabled", nodeFill: "nodeFill", nodeStroke: "nodeStroke", nodeSort: "nodeSort", nodeEnterPosition: "nodeEnterPosition", nodeEnterScale: "nodeEnterScale", nodeExitPosition: "nodeExitPosition", nodeExitScale: "nodeExitScale", selectedNodeId: "selectedNodeId", panels: "panels", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisGraphComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphComponent, decorators: [{
|
|
1073
981
|
type: Component,
|
|
1074
982
|
args: [{
|
|
1075
|
-
selector: 'vis-
|
|
983
|
+
selector: 'vis-graph',
|
|
1076
984
|
template: '',
|
|
1077
985
|
// eslint-disable-next-line no-use-before-define
|
|
1078
|
-
providers: [{ provide:
|
|
986
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisGraphComponent }],
|
|
1079
987
|
}]
|
|
1080
988
|
}], propDecorators: { duration: [{
|
|
1081
989
|
type: Input
|
|
@@ -1083,68 +991,152 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1083
991
|
type: Input
|
|
1084
992
|
}], attributes: [{
|
|
1085
993
|
type: Input
|
|
1086
|
-
}],
|
|
994
|
+
}], zoomScaleExtent: [{
|
|
1087
995
|
type: Input
|
|
1088
|
-
}],
|
|
996
|
+
}], disableZoom: [{
|
|
1089
997
|
type: Input
|
|
1090
|
-
}],
|
|
998
|
+
}], disableDrag: [{
|
|
1091
999
|
type: Input
|
|
1092
|
-
}],
|
|
1000
|
+
}], zoomThrottledUpdateNodeThreshold: [{
|
|
1093
1001
|
type: Input
|
|
1094
|
-
}],
|
|
1002
|
+
}], onZoom: [{
|
|
1095
1003
|
type: Input
|
|
1096
|
-
}],
|
|
1004
|
+
}], layoutType: [{
|
|
1097
1005
|
type: Input
|
|
1098
|
-
}],
|
|
1006
|
+
}], layoutAutofit: [{
|
|
1099
1007
|
type: Input
|
|
1100
|
-
}],
|
|
1008
|
+
}], layoutAutofitTolerance: [{
|
|
1101
1009
|
type: Input
|
|
1102
|
-
}],
|
|
1010
|
+
}], layoutNonConnectedAside: [{
|
|
1103
1011
|
type: Input
|
|
1104
|
-
}],
|
|
1012
|
+
}], layoutNodeGroup: [{
|
|
1105
1013
|
type: Input
|
|
1106
|
-
}],
|
|
1014
|
+
}], layoutGroupOrder: [{
|
|
1107
1015
|
type: Input
|
|
1108
|
-
}],
|
|
1016
|
+
}], layoutParallelNodesPerColumn: [{
|
|
1109
1017
|
type: Input
|
|
1110
|
-
}],
|
|
1018
|
+
}], layoutParallelNodeSubGroup: [{
|
|
1111
1019
|
type: Input
|
|
1112
|
-
}],
|
|
1020
|
+
}], layoutParallelSubGroupsPerRow: [{
|
|
1113
1021
|
type: Input
|
|
1114
|
-
}],
|
|
1022
|
+
}], layoutParallelGroupSpacing: [{
|
|
1115
1023
|
type: Input
|
|
1116
|
-
}],
|
|
1024
|
+
}], layoutParallelSortConnectionsByGroup: [{
|
|
1117
1025
|
type: Input
|
|
1118
|
-
}],
|
|
1026
|
+
}], forceLayoutSettings: [{
|
|
1119
1027
|
type: Input
|
|
1120
|
-
}],
|
|
1028
|
+
}], dagreLayoutSettings: [{
|
|
1121
1029
|
type: Input
|
|
1122
|
-
}],
|
|
1030
|
+
}], layoutElkSettings: [{
|
|
1123
1031
|
type: Input
|
|
1124
|
-
}],
|
|
1032
|
+
}], layoutElkNodeGroups: [{
|
|
1125
1033
|
type: Input
|
|
1126
|
-
}]
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1034
|
+
}], linkWidth: [{
|
|
1035
|
+
type: Input
|
|
1036
|
+
}], linkStyle: [{
|
|
1037
|
+
type: Input
|
|
1038
|
+
}], linkBandWidth: [{
|
|
1039
|
+
type: Input
|
|
1040
|
+
}], linkArrow: [{
|
|
1041
|
+
type: Input
|
|
1042
|
+
}], linkStroke: [{
|
|
1043
|
+
type: Input
|
|
1044
|
+
}], linkDisabled: [{
|
|
1045
|
+
type: Input
|
|
1046
|
+
}], linkFlow: [{
|
|
1047
|
+
type: Input
|
|
1048
|
+
}], linkFlowAnimDuration: [{
|
|
1049
|
+
type: Input
|
|
1050
|
+
}], linkFlowParticleSize: [{
|
|
1051
|
+
type: Input
|
|
1052
|
+
}], linkLabel: [{
|
|
1053
|
+
type: Input
|
|
1054
|
+
}], linkLabelShiftFromCenter: [{
|
|
1055
|
+
type: Input
|
|
1056
|
+
}], linkNeighborSpacing: [{
|
|
1057
|
+
type: Input
|
|
1058
|
+
}], selectedLinkId: [{
|
|
1059
|
+
type: Input
|
|
1060
|
+
}], nodeSize: [{
|
|
1061
|
+
type: Input
|
|
1062
|
+
}], nodeStrokeWidth: [{
|
|
1063
|
+
type: Input
|
|
1064
|
+
}], nodeShape: [{
|
|
1065
|
+
type: Input
|
|
1066
|
+
}], nodeGaugeValue: [{
|
|
1067
|
+
type: Input
|
|
1068
|
+
}], nodeGaugeFill: [{
|
|
1069
|
+
type: Input
|
|
1070
|
+
}], nodeGaugeAnimDuration: [{
|
|
1071
|
+
type: Input
|
|
1072
|
+
}], nodeIcon: [{
|
|
1073
|
+
type: Input
|
|
1074
|
+
}], nodeIconSize: [{
|
|
1075
|
+
type: Input
|
|
1076
|
+
}], nodeLabel: [{
|
|
1077
|
+
type: Input
|
|
1078
|
+
}], nodeLabelTrim: [{
|
|
1079
|
+
type: Input
|
|
1080
|
+
}], nodeLabelTrimMode: [{
|
|
1081
|
+
type: Input
|
|
1082
|
+
}], nodeLabelTrimLength: [{
|
|
1083
|
+
type: Input
|
|
1084
|
+
}], nodeSubLabel: [{
|
|
1085
|
+
type: Input
|
|
1086
|
+
}], nodeSubLabelTrim: [{
|
|
1087
|
+
type: Input
|
|
1088
|
+
}], nodeSubLabelTrimMode: [{
|
|
1089
|
+
type: Input
|
|
1090
|
+
}], nodeSubLabelTrimLength: [{
|
|
1091
|
+
type: Input
|
|
1092
|
+
}], nodeSideLabels: [{
|
|
1093
|
+
type: Input
|
|
1094
|
+
}], nodeBottomIcon: [{
|
|
1095
|
+
type: Input
|
|
1096
|
+
}], nodeDisabled: [{
|
|
1097
|
+
type: Input
|
|
1098
|
+
}], nodeFill: [{
|
|
1099
|
+
type: Input
|
|
1100
|
+
}], nodeStroke: [{
|
|
1101
|
+
type: Input
|
|
1102
|
+
}], nodeSort: [{
|
|
1103
|
+
type: Input
|
|
1104
|
+
}], nodeEnterPosition: [{
|
|
1105
|
+
type: Input
|
|
1106
|
+
}], nodeEnterScale: [{
|
|
1107
|
+
type: Input
|
|
1108
|
+
}], nodeExitPosition: [{
|
|
1109
|
+
type: Input
|
|
1110
|
+
}], nodeExitScale: [{
|
|
1111
|
+
type: Input
|
|
1112
|
+
}], selectedNodeId: [{
|
|
1113
|
+
type: Input
|
|
1114
|
+
}], panels: [{
|
|
1115
|
+
type: Input
|
|
1116
|
+
}], data: [{
|
|
1117
|
+
type: Input
|
|
1118
|
+
}] } });
|
|
1119
|
+
|
|
1120
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1121
|
+
class VisGraphModule {
|
|
1122
|
+
}
|
|
1123
|
+
VisGraphModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1124
|
+
VisGraphModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphModule, declarations: [VisGraphComponent], exports: [VisGraphComponent] });
|
|
1125
|
+
VisGraphModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphModule, imports: [[]] });
|
|
1126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGraphModule, decorators: [{
|
|
1135
1127
|
type: NgModule,
|
|
1136
1128
|
args: [{
|
|
1137
1129
|
imports: [],
|
|
1138
|
-
declarations: [
|
|
1139
|
-
exports: [
|
|
1130
|
+
declarations: [VisGraphComponent],
|
|
1131
|
+
exports: [VisGraphComponent],
|
|
1140
1132
|
}]
|
|
1141
1133
|
}] });
|
|
1142
1134
|
|
|
1143
1135
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1144
|
-
class
|
|
1136
|
+
class VisGroupedBarComponent {
|
|
1145
1137
|
ngAfterViewInit() {
|
|
1146
1138
|
var _a;
|
|
1147
|
-
this.component = new
|
|
1139
|
+
this.component = new GroupedBar(this.getConfig());
|
|
1148
1140
|
if (this.data) {
|
|
1149
1141
|
this.component.setData(this.data);
|
|
1150
1142
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -1159,23 +1151,23 @@ class VisStackedBarComponent {
|
|
|
1159
1151
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1160
1152
|
}
|
|
1161
1153
|
getConfig() {
|
|
1162
|
-
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation,
|
|
1163
|
-
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation,
|
|
1154
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, groupWidth, groupMaxWidth, dataStep, groupPadding, barPadding, roundedCorners, barMinHeight, cursor, orientation } = this;
|
|
1155
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, groupWidth, groupMaxWidth, dataStep, groupPadding, barPadding, roundedCorners, barMinHeight, cursor, orientation };
|
|
1164
1156
|
const keys = Object.keys(config);
|
|
1165
1157
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1166
1158
|
delete config[key]; });
|
|
1167
1159
|
return config;
|
|
1168
1160
|
}
|
|
1169
1161
|
}
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1162
|
+
VisGroupedBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGroupedBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1163
|
+
VisGroupedBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisGroupedBarComponent, selector: "vis-grouped-bar", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", groupWidth: "groupWidth", groupMaxWidth: "groupMaxWidth", dataStep: "dataStep", groupPadding: "groupPadding", barPadding: "barPadding", roundedCorners: "roundedCorners", barMinHeight: "barMinHeight", cursor: "cursor", orientation: "orientation", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisGroupedBarComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGroupedBarComponent, decorators: [{
|
|
1173
1165
|
type: Component,
|
|
1174
1166
|
args: [{
|
|
1175
|
-
selector: 'vis-
|
|
1167
|
+
selector: 'vis-grouped-bar',
|
|
1176
1168
|
template: '',
|
|
1177
1169
|
// eslint-disable-next-line no-use-before-define
|
|
1178
|
-
providers: [{ provide: VisXYComponent, useExisting:
|
|
1170
|
+
providers: [{ provide: VisXYComponent, useExisting: VisGroupedBarComponent }],
|
|
1179
1171
|
}]
|
|
1180
1172
|
}], propDecorators: { duration: [{
|
|
1181
1173
|
type: Input
|
|
@@ -1197,21 +1189,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1197
1189
|
type: Input
|
|
1198
1190
|
}], excludeFromDomainCalculation: [{
|
|
1199
1191
|
type: Input
|
|
1200
|
-
}],
|
|
1192
|
+
}], groupWidth: [{
|
|
1201
1193
|
type: Input
|
|
1202
|
-
}],
|
|
1194
|
+
}], groupMaxWidth: [{
|
|
1203
1195
|
type: Input
|
|
1204
1196
|
}], dataStep: [{
|
|
1205
1197
|
type: Input
|
|
1198
|
+
}], groupPadding: [{
|
|
1199
|
+
type: Input
|
|
1206
1200
|
}], barPadding: [{
|
|
1207
1201
|
type: Input
|
|
1208
1202
|
}], roundedCorners: [{
|
|
1209
1203
|
type: Input
|
|
1210
|
-
}],
|
|
1211
|
-
type: Input
|
|
1212
|
-
}], barMinHeight1Px: [{
|
|
1204
|
+
}], barMinHeight: [{
|
|
1213
1205
|
type: Input
|
|
1214
|
-
}],
|
|
1206
|
+
}], cursor: [{
|
|
1215
1207
|
type: Input
|
|
1216
1208
|
}], orientation: [{
|
|
1217
1209
|
type: Input
|
|
@@ -1220,25 +1212,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1220
1212
|
}] } });
|
|
1221
1213
|
|
|
1222
1214
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1223
|
-
class
|
|
1215
|
+
class VisGroupedBarModule {
|
|
1224
1216
|
}
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1217
|
+
VisGroupedBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGroupedBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1218
|
+
VisGroupedBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGroupedBarModule, declarations: [VisGroupedBarComponent], exports: [VisGroupedBarComponent] });
|
|
1219
|
+
VisGroupedBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGroupedBarModule, imports: [[]] });
|
|
1220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisGroupedBarModule, decorators: [{
|
|
1229
1221
|
type: NgModule,
|
|
1230
1222
|
args: [{
|
|
1231
1223
|
imports: [],
|
|
1232
|
-
declarations: [
|
|
1233
|
-
exports: [
|
|
1224
|
+
declarations: [VisGroupedBarComponent],
|
|
1225
|
+
exports: [VisGroupedBarComponent],
|
|
1234
1226
|
}]
|
|
1235
1227
|
}] });
|
|
1236
1228
|
|
|
1237
1229
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1238
|
-
class
|
|
1230
|
+
class VisLineComponent {
|
|
1239
1231
|
ngAfterViewInit() {
|
|
1240
1232
|
var _a;
|
|
1241
|
-
this.component = new
|
|
1233
|
+
this.component = new Line(this.getConfig());
|
|
1242
1234
|
if (this.data) {
|
|
1243
1235
|
this.component.setData(this.data);
|
|
1244
1236
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -1253,23 +1245,23 @@ class VisTimelineComponent {
|
|
|
1253
1245
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1254
1246
|
}
|
|
1255
1247
|
getConfig() {
|
|
1256
|
-
const { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation,
|
|
1257
|
-
const config = { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation,
|
|
1248
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, lineWidth, lineDashArray, fallbackValue, highlightOnHover, cursor } = this;
|
|
1249
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, curveType, lineWidth, lineDashArray, fallbackValue, highlightOnHover, cursor };
|
|
1258
1250
|
const keys = Object.keys(config);
|
|
1259
1251
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1260
1252
|
delete config[key]; });
|
|
1261
1253
|
return config;
|
|
1262
1254
|
}
|
|
1263
1255
|
}
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1256
|
+
VisLineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1257
|
+
VisLineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisLineComponent, selector: "vis-line", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", curveType: "curveType", lineWidth: "lineWidth", lineDashArray: "lineDashArray", fallbackValue: "fallbackValue", highlightOnHover: "highlightOnHover", cursor: "cursor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineComponent, decorators: [{
|
|
1267
1259
|
type: Component,
|
|
1268
1260
|
args: [{
|
|
1269
|
-
selector: 'vis-
|
|
1261
|
+
selector: 'vis-line',
|
|
1270
1262
|
template: '',
|
|
1271
1263
|
// eslint-disable-next-line no-use-before-define
|
|
1272
|
-
providers: [{ provide: VisXYComponent, useExisting:
|
|
1264
|
+
providers: [{ provide: VisXYComponent, useExisting: VisLineComponent }],
|
|
1273
1265
|
}]
|
|
1274
1266
|
}], propDecorators: { duration: [{
|
|
1275
1267
|
type: Input
|
|
@@ -1279,6 +1271,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1279
1271
|
type: Input
|
|
1280
1272
|
}], x: [{
|
|
1281
1273
|
type: Input
|
|
1274
|
+
}], y: [{
|
|
1275
|
+
type: Input
|
|
1282
1276
|
}], id: [{
|
|
1283
1277
|
type: Input
|
|
1284
1278
|
}], color: [{
|
|
@@ -1289,54 +1283,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1289
1283
|
type: Input
|
|
1290
1284
|
}], excludeFromDomainCalculation: [{
|
|
1291
1285
|
type: Input
|
|
1292
|
-
}],
|
|
1286
|
+
}], curveType: [{
|
|
1293
1287
|
type: Input
|
|
1294
|
-
}],
|
|
1288
|
+
}], lineWidth: [{
|
|
1295
1289
|
type: Input
|
|
1296
|
-
}],
|
|
1290
|
+
}], lineDashArray: [{
|
|
1297
1291
|
type: Input
|
|
1298
|
-
}],
|
|
1292
|
+
}], fallbackValue: [{
|
|
1299
1293
|
type: Input
|
|
1300
|
-
}],
|
|
1294
|
+
}], highlightOnHover: [{
|
|
1301
1295
|
type: Input
|
|
1302
1296
|
}], cursor: [{
|
|
1303
1297
|
type: Input
|
|
1304
|
-
}], showLabels: [{
|
|
1305
|
-
type: Input
|
|
1306
|
-
}], labelWidth: [{
|
|
1307
|
-
type: Input
|
|
1308
|
-
}], maxLabelWidth: [{
|
|
1309
|
-
type: Input
|
|
1310
|
-
}], alternatingRowColors: [{
|
|
1311
|
-
type: Input
|
|
1312
|
-
}], onScroll: [{
|
|
1313
|
-
type: Input
|
|
1314
|
-
}], showEmptySegments: [{
|
|
1315
|
-
type: Input
|
|
1316
1298
|
}], data: [{
|
|
1317
1299
|
type: Input
|
|
1318
1300
|
}] } });
|
|
1319
1301
|
|
|
1320
1302
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1321
|
-
class
|
|
1303
|
+
class VisLineModule {
|
|
1322
1304
|
}
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1305
|
+
VisLineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1306
|
+
VisLineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, declarations: [VisLineComponent], exports: [VisLineComponent] });
|
|
1307
|
+
VisLineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, imports: [[]] });
|
|
1308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisLineModule, decorators: [{
|
|
1327
1309
|
type: NgModule,
|
|
1328
1310
|
args: [{
|
|
1329
1311
|
imports: [],
|
|
1330
|
-
declarations: [
|
|
1331
|
-
exports: [
|
|
1312
|
+
declarations: [VisLineComponent],
|
|
1313
|
+
exports: [VisLineComponent],
|
|
1332
1314
|
}]
|
|
1333
1315
|
}] });
|
|
1334
1316
|
|
|
1335
1317
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1336
|
-
class
|
|
1318
|
+
class VisNestedDonutComponent {
|
|
1337
1319
|
ngAfterViewInit() {
|
|
1338
1320
|
var _a;
|
|
1339
|
-
this.component = new
|
|
1321
|
+
this.component = new NestedDonut(this.getConfig());
|
|
1340
1322
|
if (this.data) {
|
|
1341
1323
|
this.component.setData(this.data);
|
|
1342
1324
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -1351,23 +1333,23 @@ class VisXYLabelsComponent {
|
|
|
1351
1333
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1352
1334
|
}
|
|
1353
1335
|
getConfig() {
|
|
1354
|
-
const { duration, events, attributes,
|
|
1355
|
-
const config = { duration, events, attributes,
|
|
1336
|
+
const { duration, events, attributes, angleRange, direction, value, centralLabel, centralSubLabel, centralSubLabelWrap, showBackground, sort, layers, layerSettings, layerPadding, cornerRadius, emptySegmentAngle, hideOverflowingSegmentLabels, segmentColor, segmentLabel, segmentLabelColor, showEmptySegments } = this;
|
|
1337
|
+
const config = { duration, events, attributes, angleRange, direction, value, centralLabel, centralSubLabel, centralSubLabelWrap, showBackground, sort, layers, layerSettings, layerPadding, cornerRadius, emptySegmentAngle, hideOverflowingSegmentLabels, segmentColor, segmentLabel, segmentLabelColor, showEmptySegments };
|
|
1356
1338
|
const keys = Object.keys(config);
|
|
1357
1339
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1358
1340
|
delete config[key]; });
|
|
1359
1341
|
return config;
|
|
1360
1342
|
}
|
|
1361
1343
|
}
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1344
|
+
VisNestedDonutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisNestedDonutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1345
|
+
VisNestedDonutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisNestedDonutComponent, selector: "vis-nested-donut", inputs: { duration: "duration", events: "events", attributes: "attributes", angleRange: "angleRange", direction: "direction", value: "value", centralLabel: "centralLabel", centralSubLabel: "centralSubLabel", centralSubLabelWrap: "centralSubLabelWrap", showBackground: "showBackground", sort: "sort", layers: "layers", layerSettings: "layerSettings", layerPadding: "layerPadding", cornerRadius: "cornerRadius", emptySegmentAngle: "emptySegmentAngle", hideOverflowingSegmentLabels: "hideOverflowingSegmentLabels", segmentColor: "segmentColor", segmentLabel: "segmentLabel", segmentLabelColor: "segmentLabelColor", showEmptySegments: "showEmptySegments", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisNestedDonutComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisNestedDonutComponent, decorators: [{
|
|
1365
1347
|
type: Component,
|
|
1366
1348
|
args: [{
|
|
1367
|
-
selector: 'vis-
|
|
1349
|
+
selector: 'vis-nested-donut',
|
|
1368
1350
|
template: '',
|
|
1369
1351
|
// eslint-disable-next-line no-use-before-define
|
|
1370
|
-
providers: [{ provide:
|
|
1352
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisNestedDonutComponent }],
|
|
1371
1353
|
}]
|
|
1372
1354
|
}], propDecorators: { duration: [{
|
|
1373
1355
|
type: Input
|
|
@@ -1375,184 +1357,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1375
1357
|
type: Input
|
|
1376
1358
|
}], attributes: [{
|
|
1377
1359
|
type: Input
|
|
1378
|
-
}],
|
|
1379
|
-
type: Input
|
|
1380
|
-
}], y: [{
|
|
1381
|
-
type: Input
|
|
1382
|
-
}], id: [{
|
|
1360
|
+
}], angleRange: [{
|
|
1383
1361
|
type: Input
|
|
1384
|
-
}],
|
|
1362
|
+
}], direction: [{
|
|
1385
1363
|
type: Input
|
|
1386
|
-
}],
|
|
1364
|
+
}], value: [{
|
|
1387
1365
|
type: Input
|
|
1388
|
-
}],
|
|
1366
|
+
}], centralLabel: [{
|
|
1389
1367
|
type: Input
|
|
1390
|
-
}],
|
|
1368
|
+
}], centralSubLabel: [{
|
|
1391
1369
|
type: Input
|
|
1392
|
-
}],
|
|
1370
|
+
}], centralSubLabelWrap: [{
|
|
1393
1371
|
type: Input
|
|
1394
|
-
}],
|
|
1372
|
+
}], showBackground: [{
|
|
1395
1373
|
type: Input
|
|
1396
|
-
}],
|
|
1374
|
+
}], sort: [{
|
|
1397
1375
|
type: Input
|
|
1398
|
-
}],
|
|
1376
|
+
}], layers: [{
|
|
1399
1377
|
type: Input
|
|
1400
|
-
}],
|
|
1378
|
+
}], layerSettings: [{
|
|
1401
1379
|
type: Input
|
|
1402
|
-
}],
|
|
1380
|
+
}], layerPadding: [{
|
|
1403
1381
|
type: Input
|
|
1404
|
-
}],
|
|
1382
|
+
}], cornerRadius: [{
|
|
1405
1383
|
type: Input
|
|
1406
|
-
}],
|
|
1384
|
+
}], emptySegmentAngle: [{
|
|
1407
1385
|
type: Input
|
|
1408
|
-
}],
|
|
1386
|
+
}], hideOverflowingSegmentLabels: [{
|
|
1409
1387
|
type: Input
|
|
1410
|
-
}],
|
|
1388
|
+
}], segmentColor: [{
|
|
1411
1389
|
type: Input
|
|
1412
|
-
}],
|
|
1390
|
+
}], segmentLabel: [{
|
|
1413
1391
|
type: Input
|
|
1414
|
-
}],
|
|
1392
|
+
}], segmentLabelColor: [{
|
|
1415
1393
|
type: Input
|
|
1416
|
-
}],
|
|
1394
|
+
}], showEmptySegments: [{
|
|
1417
1395
|
type: Input
|
|
1418
1396
|
}], data: [{
|
|
1419
1397
|
type: Input
|
|
1420
1398
|
}] } });
|
|
1421
1399
|
|
|
1422
1400
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1423
|
-
class
|
|
1424
|
-
}
|
|
1425
|
-
VisXYLabelsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1426
|
-
VisXYLabelsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, declarations: [VisXYLabelsComponent], exports: [VisXYLabelsComponent] });
|
|
1427
|
-
VisXYLabelsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, imports: [[]] });
|
|
1428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, decorators: [{
|
|
1429
|
-
type: NgModule,
|
|
1430
|
-
args: [{
|
|
1431
|
-
imports: [],
|
|
1432
|
-
declarations: [VisXYLabelsComponent],
|
|
1433
|
-
exports: [VisXYLabelsComponent],
|
|
1434
|
-
}]
|
|
1435
|
-
}] });
|
|
1436
|
-
|
|
1437
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
1438
|
-
class VisTopoJSONMapComponent {
|
|
1439
|
-
ngAfterViewInit() {
|
|
1440
|
-
var _a;
|
|
1441
|
-
this.component = new TopoJSONMap(this.getConfig());
|
|
1442
|
-
if (this.data) {
|
|
1443
|
-
this.component.setData(this.data);
|
|
1444
|
-
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1445
|
-
}
|
|
1446
|
-
}
|
|
1447
|
-
ngOnChanges(changes) {
|
|
1448
|
-
var _a, _b, _c;
|
|
1449
|
-
if (changes.data) {
|
|
1450
|
-
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
1451
|
-
}
|
|
1452
|
-
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1453
|
-
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1454
|
-
}
|
|
1455
|
-
getConfig() {
|
|
1456
|
-
const { duration, events, attributes, projection, topojson, mapFeatureName, mapFitToPoints, zoomFactor, disableZoom, zoomExtent, zoomDuration, linkWidth, linkColor, linkCursor, linkId, linkSource, linkTarget, areaId, areaColor, areaCursor, pointColor, pointRadius, pointStrokeWidth, pointCursor, longitude, latitude, pointLabel, pointLabelPosition, pointLabelTextBrightnessRatio, pointId, heatmapMode, heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold } = this;
|
|
1457
|
-
const config = { duration, events, attributes, projection, topojson, mapFeatureName, mapFitToPoints, zoomFactor, disableZoom, zoomExtent, zoomDuration, linkWidth, linkColor, linkCursor, linkId, linkSource, linkTarget, areaId, areaColor, areaCursor, pointColor, pointRadius, pointStrokeWidth, pointCursor, longitude, latitude, pointLabel, pointLabelPosition, pointLabelTextBrightnessRatio, pointId, heatmapMode, heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold };
|
|
1458
|
-
const keys = Object.keys(config);
|
|
1459
|
-
keys.forEach(key => { if (config[key] === undefined)
|
|
1460
|
-
delete config[key]; });
|
|
1461
|
-
return config;
|
|
1462
|
-
}
|
|
1463
|
-
}
|
|
1464
|
-
VisTopoJSONMapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1465
|
-
VisTopoJSONMapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTopoJSONMapComponent, selector: "vis-topojson-map", inputs: { duration: "duration", events: "events", attributes: "attributes", projection: "projection", topojson: "topojson", mapFeatureName: "mapFeatureName", mapFitToPoints: "mapFitToPoints", zoomFactor: "zoomFactor", disableZoom: "disableZoom", zoomExtent: "zoomExtent", zoomDuration: "zoomDuration", linkWidth: "linkWidth", linkColor: "linkColor", linkCursor: "linkCursor", linkId: "linkId", linkSource: "linkSource", linkTarget: "linkTarget", areaId: "areaId", areaColor: "areaColor", areaCursor: "areaCursor", pointColor: "pointColor", pointRadius: "pointRadius", pointStrokeWidth: "pointStrokeWidth", pointCursor: "pointCursor", longitude: "longitude", latitude: "latitude", pointLabel: "pointLabel", pointLabelPosition: "pointLabelPosition", pointLabelTextBrightnessRatio: "pointLabelTextBrightnessRatio", pointId: "pointId", heatmapMode: "heatmapMode", heatmapModeBlurStdDeviation: "heatmapModeBlurStdDeviation", heatmapModeZoomLevelThreshold: "heatmapModeZoomLevelThreshold", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapComponent, decorators: [{
|
|
1467
|
-
type: Component,
|
|
1468
|
-
args: [{
|
|
1469
|
-
selector: 'vis-topojson-map',
|
|
1470
|
-
template: '',
|
|
1471
|
-
// eslint-disable-next-line no-use-before-define
|
|
1472
|
-
providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }],
|
|
1473
|
-
}]
|
|
1474
|
-
}], propDecorators: { duration: [{
|
|
1475
|
-
type: Input
|
|
1476
|
-
}], events: [{
|
|
1477
|
-
type: Input
|
|
1478
|
-
}], attributes: [{
|
|
1479
|
-
type: Input
|
|
1480
|
-
}], projection: [{
|
|
1481
|
-
type: Input
|
|
1482
|
-
}], topojson: [{
|
|
1483
|
-
type: Input
|
|
1484
|
-
}], mapFeatureName: [{
|
|
1485
|
-
type: Input
|
|
1486
|
-
}], mapFitToPoints: [{
|
|
1487
|
-
type: Input
|
|
1488
|
-
}], zoomFactor: [{
|
|
1489
|
-
type: Input
|
|
1490
|
-
}], disableZoom: [{
|
|
1491
|
-
type: Input
|
|
1492
|
-
}], zoomExtent: [{
|
|
1493
|
-
type: Input
|
|
1494
|
-
}], zoomDuration: [{
|
|
1495
|
-
type: Input
|
|
1496
|
-
}], linkWidth: [{
|
|
1497
|
-
type: Input
|
|
1498
|
-
}], linkColor: [{
|
|
1499
|
-
type: Input
|
|
1500
|
-
}], linkCursor: [{
|
|
1501
|
-
type: Input
|
|
1502
|
-
}], linkId: [{
|
|
1503
|
-
type: Input
|
|
1504
|
-
}], linkSource: [{
|
|
1505
|
-
type: Input
|
|
1506
|
-
}], linkTarget: [{
|
|
1507
|
-
type: Input
|
|
1508
|
-
}], areaId: [{
|
|
1509
|
-
type: Input
|
|
1510
|
-
}], areaColor: [{
|
|
1511
|
-
type: Input
|
|
1512
|
-
}], areaCursor: [{
|
|
1513
|
-
type: Input
|
|
1514
|
-
}], pointColor: [{
|
|
1515
|
-
type: Input
|
|
1516
|
-
}], pointRadius: [{
|
|
1517
|
-
type: Input
|
|
1518
|
-
}], pointStrokeWidth: [{
|
|
1519
|
-
type: Input
|
|
1520
|
-
}], pointCursor: [{
|
|
1521
|
-
type: Input
|
|
1522
|
-
}], longitude: [{
|
|
1523
|
-
type: Input
|
|
1524
|
-
}], latitude: [{
|
|
1525
|
-
type: Input
|
|
1526
|
-
}], pointLabel: [{
|
|
1527
|
-
type: Input
|
|
1528
|
-
}], pointLabelPosition: [{
|
|
1529
|
-
type: Input
|
|
1530
|
-
}], pointLabelTextBrightnessRatio: [{
|
|
1531
|
-
type: Input
|
|
1532
|
-
}], pointId: [{
|
|
1533
|
-
type: Input
|
|
1534
|
-
}], heatmapMode: [{
|
|
1535
|
-
type: Input
|
|
1536
|
-
}], heatmapModeBlurStdDeviation: [{
|
|
1537
|
-
type: Input
|
|
1538
|
-
}], heatmapModeZoomLevelThreshold: [{
|
|
1539
|
-
type: Input
|
|
1540
|
-
}], data: [{
|
|
1541
|
-
type: Input
|
|
1542
|
-
}] } });
|
|
1543
|
-
|
|
1544
|
-
// !!! This code was automatically generated. You should not change it !!!
|
|
1545
|
-
class VisTopoJSONMapModule {
|
|
1401
|
+
class VisNestedDonutModule {
|
|
1546
1402
|
}
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1403
|
+
VisNestedDonutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisNestedDonutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1404
|
+
VisNestedDonutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisNestedDonutModule, declarations: [VisNestedDonutComponent], exports: [VisNestedDonutComponent] });
|
|
1405
|
+
VisNestedDonutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisNestedDonutModule, imports: [[]] });
|
|
1406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisNestedDonutModule, decorators: [{
|
|
1551
1407
|
type: NgModule,
|
|
1552
1408
|
args: [{
|
|
1553
1409
|
imports: [],
|
|
1554
|
-
declarations: [
|
|
1555
|
-
exports: [
|
|
1410
|
+
declarations: [VisNestedDonutComponent],
|
|
1411
|
+
exports: [VisNestedDonutComponent],
|
|
1556
1412
|
}]
|
|
1557
1413
|
}] });
|
|
1558
1414
|
|
|
@@ -1707,10 +1563,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1707
1563
|
}] });
|
|
1708
1564
|
|
|
1709
1565
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1710
|
-
class
|
|
1566
|
+
class VisScatterComponent {
|
|
1711
1567
|
ngAfterViewInit() {
|
|
1712
1568
|
var _a;
|
|
1713
|
-
this.component = new
|
|
1569
|
+
this.component = new Scatter(this.getConfig());
|
|
1714
1570
|
if (this.data) {
|
|
1715
1571
|
this.component.setData(this.data);
|
|
1716
1572
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -1725,23 +1581,23 @@ class VisGraphComponent {
|
|
|
1725
1581
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1726
1582
|
}
|
|
1727
1583
|
getConfig() {
|
|
1728
|
-
const { duration, events, attributes,
|
|
1729
|
-
const config = { duration, events, attributes,
|
|
1584
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, size, sizeScale, sizeRange, shape, label, labelColor, labelHideOverlapping, cursor, labelTextBrightnessRatio, labelPosition, strokeColor, strokeWidth } = this;
|
|
1585
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, size, sizeScale, sizeRange, shape, label, labelColor, labelHideOverlapping, cursor, labelTextBrightnessRatio, labelPosition, strokeColor, strokeWidth };
|
|
1730
1586
|
const keys = Object.keys(config);
|
|
1731
1587
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1732
1588
|
delete config[key]; });
|
|
1733
1589
|
return config;
|
|
1734
1590
|
}
|
|
1735
1591
|
}
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1592
|
+
VisScatterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisScatterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1593
|
+
VisScatterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisScatterComponent, selector: "vis-scatter", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", size: "size", sizeScale: "sizeScale", sizeRange: "sizeRange", shape: "shape", label: "label", labelColor: "labelColor", labelHideOverlapping: "labelHideOverlapping", cursor: "cursor", labelTextBrightnessRatio: "labelTextBrightnessRatio", labelPosition: "labelPosition", strokeColor: "strokeColor", strokeWidth: "strokeWidth", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisScatterComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisScatterComponent, decorators: [{
|
|
1739
1595
|
type: Component,
|
|
1740
1596
|
args: [{
|
|
1741
|
-
selector: 'vis-
|
|
1597
|
+
selector: 'vis-scatter',
|
|
1742
1598
|
template: '',
|
|
1743
1599
|
// eslint-disable-next-line no-use-before-define
|
|
1744
|
-
providers: [{ provide:
|
|
1600
|
+
providers: [{ provide: VisXYComponent, useExisting: VisScatterComponent }],
|
|
1745
1601
|
}]
|
|
1746
1602
|
}], propDecorators: { duration: [{
|
|
1747
1603
|
type: Input
|
|
@@ -1749,152 +1605,260 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1749
1605
|
type: Input
|
|
1750
1606
|
}], attributes: [{
|
|
1751
1607
|
type: Input
|
|
1752
|
-
}],
|
|
1608
|
+
}], x: [{
|
|
1753
1609
|
type: Input
|
|
1754
|
-
}],
|
|
1610
|
+
}], y: [{
|
|
1755
1611
|
type: Input
|
|
1756
|
-
}],
|
|
1612
|
+
}], id: [{
|
|
1757
1613
|
type: Input
|
|
1758
|
-
}],
|
|
1614
|
+
}], color: [{
|
|
1759
1615
|
type: Input
|
|
1760
|
-
}],
|
|
1616
|
+
}], xScale: [{
|
|
1761
1617
|
type: Input
|
|
1762
|
-
}],
|
|
1618
|
+
}], yScale: [{
|
|
1763
1619
|
type: Input
|
|
1764
|
-
}],
|
|
1620
|
+
}], excludeFromDomainCalculation: [{
|
|
1765
1621
|
type: Input
|
|
1766
|
-
}],
|
|
1622
|
+
}], size: [{
|
|
1767
1623
|
type: Input
|
|
1768
|
-
}],
|
|
1624
|
+
}], sizeScale: [{
|
|
1769
1625
|
type: Input
|
|
1770
|
-
}],
|
|
1626
|
+
}], sizeRange: [{
|
|
1771
1627
|
type: Input
|
|
1772
|
-
}],
|
|
1628
|
+
}], shape: [{
|
|
1773
1629
|
type: Input
|
|
1774
|
-
}],
|
|
1630
|
+
}], label: [{
|
|
1775
1631
|
type: Input
|
|
1776
|
-
}],
|
|
1632
|
+
}], labelColor: [{
|
|
1777
1633
|
type: Input
|
|
1778
|
-
}],
|
|
1634
|
+
}], labelHideOverlapping: [{
|
|
1779
1635
|
type: Input
|
|
1780
|
-
}],
|
|
1636
|
+
}], cursor: [{
|
|
1781
1637
|
type: Input
|
|
1782
|
-
}],
|
|
1638
|
+
}], labelTextBrightnessRatio: [{
|
|
1783
1639
|
type: Input
|
|
1784
|
-
}],
|
|
1640
|
+
}], labelPosition: [{
|
|
1785
1641
|
type: Input
|
|
1786
|
-
}],
|
|
1642
|
+
}], strokeColor: [{
|
|
1787
1643
|
type: Input
|
|
1788
|
-
}],
|
|
1644
|
+
}], strokeWidth: [{
|
|
1789
1645
|
type: Input
|
|
1790
|
-
}],
|
|
1646
|
+
}], data: [{
|
|
1791
1647
|
type: Input
|
|
1792
|
-
}]
|
|
1648
|
+
}] } });
|
|
1649
|
+
|
|
1650
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1651
|
+
class VisScatterModule {
|
|
1652
|
+
}
|
|
1653
|
+
VisScatterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisScatterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1654
|
+
VisScatterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisScatterModule, declarations: [VisScatterComponent], exports: [VisScatterComponent] });
|
|
1655
|
+
VisScatterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisScatterModule, imports: [[]] });
|
|
1656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisScatterModule, decorators: [{
|
|
1657
|
+
type: NgModule,
|
|
1658
|
+
args: [{
|
|
1659
|
+
imports: [],
|
|
1660
|
+
declarations: [VisScatterComponent],
|
|
1661
|
+
exports: [VisScatterComponent],
|
|
1662
|
+
}]
|
|
1663
|
+
}] });
|
|
1664
|
+
|
|
1665
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1666
|
+
class VisStackedBarComponent {
|
|
1667
|
+
ngAfterViewInit() {
|
|
1668
|
+
var _a;
|
|
1669
|
+
this.component = new StackedBar(this.getConfig());
|
|
1670
|
+
if (this.data) {
|
|
1671
|
+
this.component.setData(this.data);
|
|
1672
|
+
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
ngOnChanges(changes) {
|
|
1676
|
+
var _a, _b, _c;
|
|
1677
|
+
if (changes.data) {
|
|
1678
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
1679
|
+
}
|
|
1680
|
+
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1681
|
+
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1682
|
+
}
|
|
1683
|
+
getConfig() {
|
|
1684
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, barWidth, barMaxWidth, dataStep, barPadding, roundedCorners, cursor, barMinHeight1Px, barMinHeightZeroValue, orientation } = this;
|
|
1685
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, barWidth, barMaxWidth, dataStep, barPadding, roundedCorners, cursor, barMinHeight1Px, barMinHeightZeroValue, orientation };
|
|
1686
|
+
const keys = Object.keys(config);
|
|
1687
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
1688
|
+
delete config[key]; });
|
|
1689
|
+
return config;
|
|
1690
|
+
}
|
|
1691
|
+
}
|
|
1692
|
+
VisStackedBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisStackedBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1693
|
+
VisStackedBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisStackedBarComponent, selector: "vis-stacked-bar", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", barWidth: "barWidth", barMaxWidth: "barMaxWidth", dataStep: "dataStep", barPadding: "barPadding", roundedCorners: "roundedCorners", cursor: "cursor", barMinHeight1Px: "barMinHeight1Px", barMinHeightZeroValue: "barMinHeightZeroValue", orientation: "orientation", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisStackedBarComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisStackedBarComponent, decorators: [{
|
|
1695
|
+
type: Component,
|
|
1696
|
+
args: [{
|
|
1697
|
+
selector: 'vis-stacked-bar',
|
|
1698
|
+
template: '',
|
|
1699
|
+
// eslint-disable-next-line no-use-before-define
|
|
1700
|
+
providers: [{ provide: VisXYComponent, useExisting: VisStackedBarComponent }],
|
|
1701
|
+
}]
|
|
1702
|
+
}], propDecorators: { duration: [{
|
|
1793
1703
|
type: Input
|
|
1794
|
-
}],
|
|
1704
|
+
}], events: [{
|
|
1795
1705
|
type: Input
|
|
1796
|
-
}],
|
|
1706
|
+
}], attributes: [{
|
|
1797
1707
|
type: Input
|
|
1798
|
-
}],
|
|
1708
|
+
}], x: [{
|
|
1799
1709
|
type: Input
|
|
1800
|
-
}],
|
|
1710
|
+
}], y: [{
|
|
1801
1711
|
type: Input
|
|
1802
|
-
}],
|
|
1712
|
+
}], id: [{
|
|
1803
1713
|
type: Input
|
|
1804
|
-
}],
|
|
1714
|
+
}], color: [{
|
|
1805
1715
|
type: Input
|
|
1806
|
-
}],
|
|
1716
|
+
}], xScale: [{
|
|
1807
1717
|
type: Input
|
|
1808
|
-
}],
|
|
1718
|
+
}], yScale: [{
|
|
1809
1719
|
type: Input
|
|
1810
|
-
}],
|
|
1720
|
+
}], excludeFromDomainCalculation: [{
|
|
1811
1721
|
type: Input
|
|
1812
|
-
}],
|
|
1722
|
+
}], barWidth: [{
|
|
1813
1723
|
type: Input
|
|
1814
|
-
}],
|
|
1724
|
+
}], barMaxWidth: [{
|
|
1815
1725
|
type: Input
|
|
1816
|
-
}],
|
|
1726
|
+
}], dataStep: [{
|
|
1817
1727
|
type: Input
|
|
1818
|
-
}],
|
|
1728
|
+
}], barPadding: [{
|
|
1819
1729
|
type: Input
|
|
1820
|
-
}],
|
|
1730
|
+
}], roundedCorners: [{
|
|
1821
1731
|
type: Input
|
|
1822
|
-
}],
|
|
1732
|
+
}], cursor: [{
|
|
1823
1733
|
type: Input
|
|
1824
|
-
}],
|
|
1734
|
+
}], barMinHeight1Px: [{
|
|
1825
1735
|
type: Input
|
|
1826
|
-
}],
|
|
1736
|
+
}], barMinHeightZeroValue: [{
|
|
1827
1737
|
type: Input
|
|
1828
|
-
}],
|
|
1738
|
+
}], orientation: [{
|
|
1829
1739
|
type: Input
|
|
1830
|
-
}],
|
|
1740
|
+
}], data: [{
|
|
1831
1741
|
type: Input
|
|
1832
|
-
}]
|
|
1742
|
+
}] } });
|
|
1743
|
+
|
|
1744
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1745
|
+
class VisStackedBarModule {
|
|
1746
|
+
}
|
|
1747
|
+
VisStackedBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisStackedBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1748
|
+
VisStackedBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisStackedBarModule, declarations: [VisStackedBarComponent], exports: [VisStackedBarComponent] });
|
|
1749
|
+
VisStackedBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisStackedBarModule, imports: [[]] });
|
|
1750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisStackedBarModule, decorators: [{
|
|
1751
|
+
type: NgModule,
|
|
1752
|
+
args: [{
|
|
1753
|
+
imports: [],
|
|
1754
|
+
declarations: [VisStackedBarComponent],
|
|
1755
|
+
exports: [VisStackedBarComponent],
|
|
1756
|
+
}]
|
|
1757
|
+
}] });
|
|
1758
|
+
|
|
1759
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1760
|
+
class VisTimelineComponent {
|
|
1761
|
+
ngAfterViewInit() {
|
|
1762
|
+
var _a;
|
|
1763
|
+
this.component = new Timeline(this.getConfig());
|
|
1764
|
+
if (this.data) {
|
|
1765
|
+
this.component.setData(this.data);
|
|
1766
|
+
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
ngOnChanges(changes) {
|
|
1770
|
+
var _a, _b, _c;
|
|
1771
|
+
if (changes.data) {
|
|
1772
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
1773
|
+
}
|
|
1774
|
+
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1775
|
+
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1776
|
+
}
|
|
1777
|
+
getConfig() {
|
|
1778
|
+
const { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation, lineWidth, lineCap, rowHeight, length, type, cursor, showLabels, labelWidth, maxLabelWidth, alternatingRowColors, onScroll, showEmptySegments } = this;
|
|
1779
|
+
const config = { duration, events, attributes, x, id, color, xScale, yScale, excludeFromDomainCalculation, lineWidth, lineCap, rowHeight, length, type, cursor, showLabels, labelWidth, maxLabelWidth, alternatingRowColors, onScroll, showEmptySegments };
|
|
1780
|
+
const keys = Object.keys(config);
|
|
1781
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
1782
|
+
delete config[key]; });
|
|
1783
|
+
return config;
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
VisTimelineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1787
|
+
VisTimelineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTimelineComponent, selector: "vis-timeline", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", lineWidth: "lineWidth", lineCap: "lineCap", rowHeight: "rowHeight", length: "length", type: "type", cursor: "cursor", showLabels: "showLabels", labelWidth: "labelWidth", maxLabelWidth: "maxLabelWidth", alternatingRowColors: "alternatingRowColors", onScroll: "onScroll", showEmptySegments: "showEmptySegments", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisTimelineComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineComponent, decorators: [{
|
|
1789
|
+
type: Component,
|
|
1790
|
+
args: [{
|
|
1791
|
+
selector: 'vis-timeline',
|
|
1792
|
+
template: '',
|
|
1793
|
+
// eslint-disable-next-line no-use-before-define
|
|
1794
|
+
providers: [{ provide: VisXYComponent, useExisting: VisTimelineComponent }],
|
|
1795
|
+
}]
|
|
1796
|
+
}], propDecorators: { duration: [{
|
|
1833
1797
|
type: Input
|
|
1834
|
-
}],
|
|
1798
|
+
}], events: [{
|
|
1835
1799
|
type: Input
|
|
1836
|
-
}],
|
|
1800
|
+
}], attributes: [{
|
|
1837
1801
|
type: Input
|
|
1838
|
-
}],
|
|
1802
|
+
}], x: [{
|
|
1839
1803
|
type: Input
|
|
1840
|
-
}],
|
|
1804
|
+
}], id: [{
|
|
1841
1805
|
type: Input
|
|
1842
|
-
}],
|
|
1806
|
+
}], color: [{
|
|
1843
1807
|
type: Input
|
|
1844
|
-
}],
|
|
1808
|
+
}], xScale: [{
|
|
1845
1809
|
type: Input
|
|
1846
|
-
}],
|
|
1810
|
+
}], yScale: [{
|
|
1847
1811
|
type: Input
|
|
1848
|
-
}],
|
|
1812
|
+
}], excludeFromDomainCalculation: [{
|
|
1849
1813
|
type: Input
|
|
1850
|
-
}],
|
|
1814
|
+
}], lineWidth: [{
|
|
1851
1815
|
type: Input
|
|
1852
|
-
}],
|
|
1816
|
+
}], lineCap: [{
|
|
1853
1817
|
type: Input
|
|
1854
|
-
}],
|
|
1818
|
+
}], rowHeight: [{
|
|
1855
1819
|
type: Input
|
|
1856
|
-
}],
|
|
1820
|
+
}], length: [{
|
|
1857
1821
|
type: Input
|
|
1858
|
-
}],
|
|
1822
|
+
}], type: [{
|
|
1859
1823
|
type: Input
|
|
1860
|
-
}],
|
|
1824
|
+
}], cursor: [{
|
|
1861
1825
|
type: Input
|
|
1862
|
-
}],
|
|
1826
|
+
}], showLabels: [{
|
|
1863
1827
|
type: Input
|
|
1864
|
-
}],
|
|
1828
|
+
}], labelWidth: [{
|
|
1865
1829
|
type: Input
|
|
1866
|
-
}],
|
|
1830
|
+
}], maxLabelWidth: [{
|
|
1867
1831
|
type: Input
|
|
1868
|
-
}],
|
|
1832
|
+
}], alternatingRowColors: [{
|
|
1869
1833
|
type: Input
|
|
1870
|
-
}],
|
|
1834
|
+
}], onScroll: [{
|
|
1871
1835
|
type: Input
|
|
1872
|
-
}],
|
|
1836
|
+
}], showEmptySegments: [{
|
|
1873
1837
|
type: Input
|
|
1874
1838
|
}], data: [{
|
|
1875
1839
|
type: Input
|
|
1876
1840
|
}] } });
|
|
1877
1841
|
|
|
1878
1842
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1879
|
-
class
|
|
1843
|
+
class VisTimelineModule {
|
|
1880
1844
|
}
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1845
|
+
VisTimelineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1846
|
+
VisTimelineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineModule, declarations: [VisTimelineComponent], exports: [VisTimelineComponent] });
|
|
1847
|
+
VisTimelineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineModule, imports: [[]] });
|
|
1848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTimelineModule, decorators: [{
|
|
1885
1849
|
type: NgModule,
|
|
1886
1850
|
args: [{
|
|
1887
1851
|
imports: [],
|
|
1888
|
-
declarations: [
|
|
1889
|
-
exports: [
|
|
1852
|
+
declarations: [VisTimelineComponent],
|
|
1853
|
+
exports: [VisTimelineComponent],
|
|
1890
1854
|
}]
|
|
1891
1855
|
}] });
|
|
1892
1856
|
|
|
1893
1857
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1894
|
-
class
|
|
1858
|
+
class VisXYLabelsComponent {
|
|
1895
1859
|
ngAfterViewInit() {
|
|
1896
1860
|
var _a;
|
|
1897
|
-
this.component = new
|
|
1861
|
+
this.component = new XYLabels(this.getConfig());
|
|
1898
1862
|
if (this.data) {
|
|
1899
1863
|
this.component.setData(this.data);
|
|
1900
1864
|
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
@@ -1909,23 +1873,23 @@ class VisNestedDonutComponent {
|
|
|
1909
1873
|
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1910
1874
|
}
|
|
1911
1875
|
getConfig() {
|
|
1912
|
-
const { duration, events, attributes,
|
|
1913
|
-
const config = { duration, events, attributes,
|
|
1876
|
+
const { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, xPositioning, yPositioning, labelFontSize, label, backgroundColor, cursor, labelTextBrightnessRatio, clustering, clusterLabel, clusterFontSize, clusterBackgroundColor, clusterCursor, clusterLabelColor } = this;
|
|
1877
|
+
const config = { duration, events, attributes, x, y, id, color, xScale, yScale, excludeFromDomainCalculation, xPositioning, yPositioning, labelFontSize, label, backgroundColor, cursor, labelTextBrightnessRatio, clustering, clusterLabel, clusterFontSize, clusterBackgroundColor, clusterCursor, clusterLabelColor };
|
|
1914
1878
|
const keys = Object.keys(config);
|
|
1915
1879
|
keys.forEach(key => { if (config[key] === undefined)
|
|
1916
1880
|
delete config[key]; });
|
|
1917
1881
|
return config;
|
|
1918
1882
|
}
|
|
1919
1883
|
}
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1884
|
+
VisXYLabelsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1885
|
+
VisXYLabelsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisXYLabelsComponent, selector: "vis-xy-labels", inputs: { duration: "duration", events: "events", attributes: "attributes", x: "x", y: "y", id: "id", color: "color", xScale: "xScale", yScale: "yScale", excludeFromDomainCalculation: "excludeFromDomainCalculation", xPositioning: "xPositioning", yPositioning: "yPositioning", labelFontSize: "labelFontSize", label: "label", backgroundColor: "backgroundColor", cursor: "cursor", labelTextBrightnessRatio: "labelTextBrightnessRatio", clustering: "clustering", clusterLabel: "clusterLabel", clusterFontSize: "clusterFontSize", clusterBackgroundColor: "clusterBackgroundColor", clusterCursor: "clusterCursor", clusterLabelColor: "clusterLabelColor", data: "data" }, providers: [{ provide: VisXYComponent, useExisting: VisXYLabelsComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsComponent, decorators: [{
|
|
1923
1887
|
type: Component,
|
|
1924
1888
|
args: [{
|
|
1925
|
-
selector: 'vis-
|
|
1889
|
+
selector: 'vis-xy-labels',
|
|
1926
1890
|
template: '',
|
|
1927
1891
|
// eslint-disable-next-line no-use-before-define
|
|
1928
|
-
providers: [{ provide:
|
|
1892
|
+
providers: [{ provide: VisXYComponent, useExisting: VisXYLabelsComponent }],
|
|
1929
1893
|
}]
|
|
1930
1894
|
}], propDecorators: { duration: [{
|
|
1931
1895
|
type: Input
|
|
@@ -1933,58 +1897,184 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
1933
1897
|
type: Input
|
|
1934
1898
|
}], attributes: [{
|
|
1935
1899
|
type: Input
|
|
1936
|
-
}],
|
|
1900
|
+
}], x: [{
|
|
1937
1901
|
type: Input
|
|
1938
|
-
}],
|
|
1902
|
+
}], y: [{
|
|
1939
1903
|
type: Input
|
|
1940
|
-
}],
|
|
1904
|
+
}], id: [{
|
|
1941
1905
|
type: Input
|
|
1942
|
-
}],
|
|
1906
|
+
}], color: [{
|
|
1943
1907
|
type: Input
|
|
1944
|
-
}],
|
|
1908
|
+
}], xScale: [{
|
|
1945
1909
|
type: Input
|
|
1946
|
-
}],
|
|
1910
|
+
}], yScale: [{
|
|
1947
1911
|
type: Input
|
|
1948
|
-
}],
|
|
1912
|
+
}], excludeFromDomainCalculation: [{
|
|
1949
1913
|
type: Input
|
|
1950
|
-
}],
|
|
1914
|
+
}], xPositioning: [{
|
|
1951
1915
|
type: Input
|
|
1952
|
-
}],
|
|
1916
|
+
}], yPositioning: [{
|
|
1953
1917
|
type: Input
|
|
1954
|
-
}],
|
|
1918
|
+
}], labelFontSize: [{
|
|
1955
1919
|
type: Input
|
|
1956
|
-
}],
|
|
1920
|
+
}], label: [{
|
|
1957
1921
|
type: Input
|
|
1958
|
-
}],
|
|
1922
|
+
}], backgroundColor: [{
|
|
1959
1923
|
type: Input
|
|
1960
|
-
}],
|
|
1924
|
+
}], cursor: [{
|
|
1961
1925
|
type: Input
|
|
1962
|
-
}],
|
|
1926
|
+
}], labelTextBrightnessRatio: [{
|
|
1963
1927
|
type: Input
|
|
1964
|
-
}],
|
|
1928
|
+
}], clustering: [{
|
|
1965
1929
|
type: Input
|
|
1966
|
-
}],
|
|
1930
|
+
}], clusterLabel: [{
|
|
1967
1931
|
type: Input
|
|
1968
|
-
}],
|
|
1932
|
+
}], clusterFontSize: [{
|
|
1969
1933
|
type: Input
|
|
1970
|
-
}],
|
|
1934
|
+
}], clusterBackgroundColor: [{
|
|
1935
|
+
type: Input
|
|
1936
|
+
}], clusterCursor: [{
|
|
1937
|
+
type: Input
|
|
1938
|
+
}], clusterLabelColor: [{
|
|
1971
1939
|
type: Input
|
|
1972
1940
|
}], data: [{
|
|
1973
1941
|
type: Input
|
|
1974
1942
|
}] } });
|
|
1975
1943
|
|
|
1976
1944
|
// !!! This code was automatically generated. You should not change it !!!
|
|
1977
|
-
class
|
|
1945
|
+
class VisXYLabelsModule {
|
|
1978
1946
|
}
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type:
|
|
1947
|
+
VisXYLabelsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1948
|
+
VisXYLabelsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, declarations: [VisXYLabelsComponent], exports: [VisXYLabelsComponent] });
|
|
1949
|
+
VisXYLabelsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, imports: [[]] });
|
|
1950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisXYLabelsModule, decorators: [{
|
|
1983
1951
|
type: NgModule,
|
|
1984
1952
|
args: [{
|
|
1985
1953
|
imports: [],
|
|
1986
|
-
declarations: [
|
|
1987
|
-
exports: [
|
|
1954
|
+
declarations: [VisXYLabelsComponent],
|
|
1955
|
+
exports: [VisXYLabelsComponent],
|
|
1956
|
+
}]
|
|
1957
|
+
}] });
|
|
1958
|
+
|
|
1959
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
1960
|
+
class VisTopoJSONMapComponent {
|
|
1961
|
+
ngAfterViewInit() {
|
|
1962
|
+
var _a;
|
|
1963
|
+
this.component = new TopoJSONMap(this.getConfig());
|
|
1964
|
+
if (this.data) {
|
|
1965
|
+
this.component.setData(this.data);
|
|
1966
|
+
(_a = this.componentContainer) === null || _a === void 0 ? void 0 : _a.render();
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
ngOnChanges(changes) {
|
|
1970
|
+
var _a, _b, _c;
|
|
1971
|
+
if (changes.data) {
|
|
1972
|
+
(_a = this.component) === null || _a === void 0 ? void 0 : _a.setData(this.data);
|
|
1973
|
+
}
|
|
1974
|
+
(_b = this.component) === null || _b === void 0 ? void 0 : _b.setConfig(this.getConfig());
|
|
1975
|
+
(_c = this.componentContainer) === null || _c === void 0 ? void 0 : _c.render();
|
|
1976
|
+
}
|
|
1977
|
+
getConfig() {
|
|
1978
|
+
const { duration, events, attributes, projection, topojson, mapFeatureName, mapFitToPoints, zoomFactor, disableZoom, zoomExtent, zoomDuration, linkWidth, linkColor, linkCursor, linkId, linkSource, linkTarget, areaId, areaColor, areaCursor, pointColor, pointRadius, pointStrokeWidth, pointCursor, longitude, latitude, pointLabel, pointLabelPosition, pointLabelTextBrightnessRatio, pointId, heatmapMode, heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold } = this;
|
|
1979
|
+
const config = { duration, events, attributes, projection, topojson, mapFeatureName, mapFitToPoints, zoomFactor, disableZoom, zoomExtent, zoomDuration, linkWidth, linkColor, linkCursor, linkId, linkSource, linkTarget, areaId, areaColor, areaCursor, pointColor, pointRadius, pointStrokeWidth, pointCursor, longitude, latitude, pointLabel, pointLabelPosition, pointLabelTextBrightnessRatio, pointId, heatmapMode, heatmapModeBlurStdDeviation, heatmapModeZoomLevelThreshold };
|
|
1980
|
+
const keys = Object.keys(config);
|
|
1981
|
+
keys.forEach(key => { if (config[key] === undefined)
|
|
1982
|
+
delete config[key]; });
|
|
1983
|
+
return config;
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
VisTopoJSONMapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1987
|
+
VisTopoJSONMapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: VisTopoJSONMapComponent, selector: "vis-topojson-map", inputs: { duration: "duration", events: "events", attributes: "attributes", projection: "projection", topojson: "topojson", mapFeatureName: "mapFeatureName", mapFitToPoints: "mapFitToPoints", zoomFactor: "zoomFactor", disableZoom: "disableZoom", zoomExtent: "zoomExtent", zoomDuration: "zoomDuration", linkWidth: "linkWidth", linkColor: "linkColor", linkCursor: "linkCursor", linkId: "linkId", linkSource: "linkSource", linkTarget: "linkTarget", areaId: "areaId", areaColor: "areaColor", areaCursor: "areaCursor", pointColor: "pointColor", pointRadius: "pointRadius", pointStrokeWidth: "pointStrokeWidth", pointCursor: "pointCursor", longitude: "longitude", latitude: "latitude", pointLabel: "pointLabel", pointLabelPosition: "pointLabelPosition", pointLabelTextBrightnessRatio: "pointLabelTextBrightnessRatio", pointId: "pointId", heatmapMode: "heatmapMode", heatmapModeBlurStdDeviation: "heatmapModeBlurStdDeviation", heatmapModeZoomLevelThreshold: "heatmapModeZoomLevelThreshold", data: "data" }, providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }], usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapComponent, decorators: [{
|
|
1989
|
+
type: Component,
|
|
1990
|
+
args: [{
|
|
1991
|
+
selector: 'vis-topojson-map',
|
|
1992
|
+
template: '',
|
|
1993
|
+
// eslint-disable-next-line no-use-before-define
|
|
1994
|
+
providers: [{ provide: VisCoreComponent, useExisting: VisTopoJSONMapComponent }],
|
|
1995
|
+
}]
|
|
1996
|
+
}], propDecorators: { duration: [{
|
|
1997
|
+
type: Input
|
|
1998
|
+
}], events: [{
|
|
1999
|
+
type: Input
|
|
2000
|
+
}], attributes: [{
|
|
2001
|
+
type: Input
|
|
2002
|
+
}], projection: [{
|
|
2003
|
+
type: Input
|
|
2004
|
+
}], topojson: [{
|
|
2005
|
+
type: Input
|
|
2006
|
+
}], mapFeatureName: [{
|
|
2007
|
+
type: Input
|
|
2008
|
+
}], mapFitToPoints: [{
|
|
2009
|
+
type: Input
|
|
2010
|
+
}], zoomFactor: [{
|
|
2011
|
+
type: Input
|
|
2012
|
+
}], disableZoom: [{
|
|
2013
|
+
type: Input
|
|
2014
|
+
}], zoomExtent: [{
|
|
2015
|
+
type: Input
|
|
2016
|
+
}], zoomDuration: [{
|
|
2017
|
+
type: Input
|
|
2018
|
+
}], linkWidth: [{
|
|
2019
|
+
type: Input
|
|
2020
|
+
}], linkColor: [{
|
|
2021
|
+
type: Input
|
|
2022
|
+
}], linkCursor: [{
|
|
2023
|
+
type: Input
|
|
2024
|
+
}], linkId: [{
|
|
2025
|
+
type: Input
|
|
2026
|
+
}], linkSource: [{
|
|
2027
|
+
type: Input
|
|
2028
|
+
}], linkTarget: [{
|
|
2029
|
+
type: Input
|
|
2030
|
+
}], areaId: [{
|
|
2031
|
+
type: Input
|
|
2032
|
+
}], areaColor: [{
|
|
2033
|
+
type: Input
|
|
2034
|
+
}], areaCursor: [{
|
|
2035
|
+
type: Input
|
|
2036
|
+
}], pointColor: [{
|
|
2037
|
+
type: Input
|
|
2038
|
+
}], pointRadius: [{
|
|
2039
|
+
type: Input
|
|
2040
|
+
}], pointStrokeWidth: [{
|
|
2041
|
+
type: Input
|
|
2042
|
+
}], pointCursor: [{
|
|
2043
|
+
type: Input
|
|
2044
|
+
}], longitude: [{
|
|
2045
|
+
type: Input
|
|
2046
|
+
}], latitude: [{
|
|
2047
|
+
type: Input
|
|
2048
|
+
}], pointLabel: [{
|
|
2049
|
+
type: Input
|
|
2050
|
+
}], pointLabelPosition: [{
|
|
2051
|
+
type: Input
|
|
2052
|
+
}], pointLabelTextBrightnessRatio: [{
|
|
2053
|
+
type: Input
|
|
2054
|
+
}], pointId: [{
|
|
2055
|
+
type: Input
|
|
2056
|
+
}], heatmapMode: [{
|
|
2057
|
+
type: Input
|
|
2058
|
+
}], heatmapModeBlurStdDeviation: [{
|
|
2059
|
+
type: Input
|
|
2060
|
+
}], heatmapModeZoomLevelThreshold: [{
|
|
2061
|
+
type: Input
|
|
2062
|
+
}], data: [{
|
|
2063
|
+
type: Input
|
|
2064
|
+
}] } });
|
|
2065
|
+
|
|
2066
|
+
// !!! This code was automatically generated. You should not change it !!!
|
|
2067
|
+
class VisTopoJSONMapModule {
|
|
2068
|
+
}
|
|
2069
|
+
VisTopoJSONMapModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2070
|
+
VisTopoJSONMapModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapModule, declarations: [VisTopoJSONMapComponent], exports: [VisTopoJSONMapComponent] });
|
|
2071
|
+
VisTopoJSONMapModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapModule, imports: [[]] });
|
|
2072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: VisTopoJSONMapModule, decorators: [{
|
|
2073
|
+
type: NgModule,
|
|
2074
|
+
args: [{
|
|
2075
|
+
imports: [],
|
|
2076
|
+
declarations: [VisTopoJSONMapComponent],
|
|
2077
|
+
exports: [VisTopoJSONMapComponent],
|
|
1988
2078
|
}]
|
|
1989
2079
|
}] });
|
|
1990
2080
|
|
|
@@ -2392,5 +2482,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
2392
2482
|
* Generated bundle index. Do not edit.
|
|
2393
2483
|
*/
|
|
2394
2484
|
|
|
2395
|
-
export { VisAreaComponent, VisAreaModule, VisAxisComponent, VisAxisModule, VisBrushComponent, VisBrushModule, VisBulletLegendComponent, VisBulletLegendModule, VisCoreComponent, VisCrosshairComponent, VisCrosshairModule, VisDonutComponent, VisDonutModule, VisFreeBrushComponent, VisFreeBrushModule, VisGenericComponent, VisGraphComponent, VisGraphModule, VisGroupedBarComponent, VisGroupedBarModule, VisLeafletFlowMapComponent, VisLeafletFlowMapModule, VisLeafletMapComponent, VisLeafletMapModule, VisLineComponent, VisLineModule, VisNestedDonutComponent, VisNestedDonutModule, VisSankeyComponent, VisSankeyModule, VisScatterComponent, VisScatterModule, VisSingleContainerComponent, VisSingleContainerModule, VisStackedBarComponent, VisStackedBarModule, VisTimelineComponent, VisTimelineModule, VisTooltipComponent, VisTooltipModule, VisTopoJSONMapComponent, VisTopoJSONMapModule, VisXYComponent, VisXYContainerComponent, VisXYContainerModule, VisXYLabelsComponent, VisXYLabelsModule };
|
|
2485
|
+
export { VisAreaComponent, VisAreaModule, VisAxisComponent, VisAxisModule, VisBrushComponent, VisBrushModule, VisBulletLegendComponent, VisBulletLegendModule, VisChordDiagramComponent, VisChordDiagramModule, VisCoreComponent, VisCrosshairComponent, VisCrosshairModule, VisDonutComponent, VisDonutModule, VisFreeBrushComponent, VisFreeBrushModule, VisGenericComponent, VisGraphComponent, VisGraphModule, VisGroupedBarComponent, VisGroupedBarModule, VisLeafletFlowMapComponent, VisLeafletFlowMapModule, VisLeafletMapComponent, VisLeafletMapModule, VisLineComponent, VisLineModule, VisNestedDonutComponent, VisNestedDonutModule, VisSankeyComponent, VisSankeyModule, VisScatterComponent, VisScatterModule, VisSingleContainerComponent, VisSingleContainerModule, VisStackedBarComponent, VisStackedBarModule, VisTimelineComponent, VisTimelineModule, VisTooltipComponent, VisTooltipModule, VisTopoJSONMapComponent, VisTopoJSONMapModule, VisXYComponent, VisXYContainerComponent, VisXYContainerModule, VisXYLabelsComponent, VisXYLabelsModule };
|
|
2396
2486
|
//# sourceMappingURL=unovis-angular.js.map
|