@progress/kendo-angular-chart-wizard 16.11.0-develop.9 → 16.12.0-develop.1
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/chart-wizard.component.d.ts +131 -5
- package/chart-wizard.module.d.ts +2 -1
- package/common/window-settings.d.ts +34 -0
- package/directives.d.ts +2 -1
- package/esm2020/chart-wizard.component.mjs +736 -38
- package/esm2020/chart-wizard.module.mjs +3 -2
- package/esm2020/common/window-settings.mjs +5 -0
- package/esm2020/directives.mjs +3 -1
- package/esm2020/index.mjs +1 -0
- package/esm2020/localization/chartwizard-localization.service.mjs +31 -0
- package/esm2020/localization/custom-messages.component.mjs +50 -0
- package/esm2020/localization/localized-messages.directive.mjs +38 -0
- package/esm2020/localization/messages.mjs +233 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/property-pane/chart-tab.component.mjs +39 -36
- package/esm2020/property-pane/data-tab.component.mjs +19 -13
- package/esm2020/property-pane/form-field.component.mjs +2 -2
- package/esm2020/property-pane/format-tab.component.mjs +176 -137
- package/fesm2015/progress-kendo-angular-chart-wizard.mjs +1305 -237
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +1301 -237
- package/index.d.ts +3 -0
- package/localization/chartwizard-localization.service.d.ts +14 -0
- package/localization/custom-messages.component.d.ts +25 -0
- package/localization/localized-messages.directive.d.ts +16 -0
- package/localization/messages.d.ts +437 -0
- package/package.json +17 -17
- package/property-pane/chart-tab.component.d.ts +3 -2
- package/property-pane/data-tab.component.d.ts +4 -1
- package/property-pane/format-tab.component.d.ts +15 -7
@@ -4,8 +4,8 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { AfterViewChecked, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
6
6
|
import { StateService } from '../state.service';
|
7
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
8
7
|
import { ActionTypes as ActionTypesType, ChartWizardSeriesItem } from '@progress/kendo-charts';
|
8
|
+
import { ChartWizardLocalizationService } from '../localization/chartwizard-localization.service';
|
9
9
|
import * as i0 from "@angular/core";
|
10
10
|
/**
|
11
11
|
* @hidden
|
@@ -50,10 +50,6 @@ export declare class ChartWizardPropertyPaneFormatTabComponent implements AfterV
|
|
50
50
|
name: string;
|
51
51
|
size: string;
|
52
52
|
};
|
53
|
-
labelFormats: {
|
54
|
-
value: string;
|
55
|
-
text: string;
|
56
|
-
}[];
|
57
53
|
defaultAllSeriesItem: {
|
58
54
|
name: string;
|
59
55
|
};
|
@@ -68,11 +64,22 @@ export declare class ChartWizardPropertyPaneFormatTabComponent implements AfterV
|
|
68
64
|
text: string;
|
69
65
|
value: string;
|
70
66
|
}[];
|
67
|
+
labelFormats: {
|
68
|
+
value: string;
|
69
|
+
text: string;
|
70
|
+
}[];
|
71
71
|
legendPositions: {
|
72
72
|
text: string;
|
73
73
|
value: string;
|
74
74
|
}[];
|
75
|
-
|
75
|
+
labelsCategoryAxisRotation: ({
|
76
|
+
text: string;
|
77
|
+
value: string;
|
78
|
+
} | {
|
79
|
+
text: string;
|
80
|
+
value: number;
|
81
|
+
})[];
|
82
|
+
labelsValueAxisRotation: ({
|
76
83
|
text: string;
|
77
84
|
value: string;
|
78
85
|
} | {
|
@@ -90,7 +97,7 @@ export declare class ChartWizardPropertyPaneFormatTabComponent implements AfterV
|
|
90
97
|
get seriesData(): any[];
|
91
98
|
get showLabels(): boolean;
|
92
99
|
get labelFormatValue(): any;
|
93
|
-
constructor(stateService: StateService, localization:
|
100
|
+
constructor(stateService: StateService, localization: ChartWizardLocalizationService, cdr: ChangeDetectorRef);
|
94
101
|
ngAfterViewChecked(): void;
|
95
102
|
ngOnDestroy(): void;
|
96
103
|
updateState(action: any, value: any): void;
|
@@ -98,6 +105,7 @@ export declare class ChartWizardPropertyPaneFormatTabComponent implements AfterV
|
|
98
105
|
toggleSeriesLabels(value: boolean): void;
|
99
106
|
updateCurrentSeries(value: ChartWizardSeriesItem): void;
|
100
107
|
updateSeriesColor(value: string): void;
|
108
|
+
messageFor(key: string): string;
|
101
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneFormatTabComponent, never>;
|
102
110
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneFormatTabComponent, "kendo-chartwizard-property-pane-format-tab", never, {}, {}, never, never, true, never>;
|
103
111
|
}
|