ids-enterprise-ng 20.1.16 → 20.1.18
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.
|
@@ -6624,6 +6624,14 @@ class SohoColumnComponent {
|
|
|
6624
6624
|
this.updateRequired = true;
|
|
6625
6625
|
}
|
|
6626
6626
|
}
|
|
6627
|
+
/** Forces decimal point to '.' on y-axis ticks regardless of locale. */
|
|
6628
|
+
set forceDecimalPoint(value) {
|
|
6629
|
+
this.options.forceDecimalPoint = value;
|
|
6630
|
+
if (this.column) {
|
|
6631
|
+
this.column.settings.forceDecimalPoint = value;
|
|
6632
|
+
this.updateRequired = true;
|
|
6633
|
+
}
|
|
6634
|
+
}
|
|
6627
6635
|
constructor(element, ngZone) {
|
|
6628
6636
|
this.element = element;
|
|
6629
6637
|
this.ngZone = ngZone;
|
|
@@ -6693,7 +6701,7 @@ class SohoColumnComponent {
|
|
|
6693
6701
|
return this.ngZone.runOutsideAngular(() => this.column?.getSelected());
|
|
6694
6702
|
}
|
|
6695
6703
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: SohoColumnComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6696
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: SohoColumnComponent, isStandalone: false, selector: "[soho-column]", inputs: { dataset: "dataset", type: "type", isStacked: "isStacked", showLegend: "showLegend", animate: "animate", redrawOnResize: "redrawOnResize", format: "format", formatterString: "formatterString", ticks: "ticks", emptyMessage: "emptyMessage", xAxis: "xAxis", yAxis: "yAxis", tooltip: "tooltip", attributes: "attributes", axisLabels: "axisLabels", stackedTransformX: "stackedTransformX", hideDots: "hideDots", useLine: "useLine" }, outputs: { selected: "selected", unselected: "unselected", rendered: "rendered", dblclick: "dblclick", contextmenu: "contextmenu" }, host: { properties: { "class.chart-container": "this.isColumn" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6704
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: SohoColumnComponent, isStandalone: false, selector: "[soho-column]", inputs: { dataset: "dataset", type: "type", isStacked: "isStacked", showLegend: "showLegend", animate: "animate", redrawOnResize: "redrawOnResize", format: "format", formatterString: "formatterString", ticks: "ticks", emptyMessage: "emptyMessage", xAxis: "xAxis", yAxis: "yAxis", tooltip: "tooltip", attributes: "attributes", axisLabels: "axisLabels", stackedTransformX: "stackedTransformX", hideDots: "hideDots", useLine: "useLine", forceDecimalPoint: "forceDecimalPoint" }, outputs: { selected: "selected", unselected: "unselected", rendered: "rendered", dblclick: "dblclick", contextmenu: "contextmenu" }, host: { properties: { "class.chart-container": "this.isColumn" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6697
6705
|
}
|
|
6698
6706
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: SohoColumnComponent, decorators: [{
|
|
6699
6707
|
type: Component,
|
|
@@ -6742,6 +6750,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
6742
6750
|
type: Input
|
|
6743
6751
|
}], useLine: [{
|
|
6744
6752
|
type: Input
|
|
6753
|
+
}], forceDecimalPoint: [{
|
|
6754
|
+
type: Input
|
|
6745
6755
|
}], selected: [{
|
|
6746
6756
|
type: Output
|
|
6747
6757
|
}], unselected: [{
|
|
@@ -31388,7 +31398,7 @@ class SohoVersionInitializerService {
|
|
|
31388
31398
|
* Initializes the version attribute.
|
|
31389
31399
|
*/
|
|
31390
31400
|
initialize() {
|
|
31391
|
-
$('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '20.1.
|
|
31401
|
+
$('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '20.1.18');
|
|
31392
31402
|
}
|
|
31393
31403
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: SohoVersionInitializerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
31394
31404
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: SohoVersionInitializerService, providedIn: 'root' }); }
|