@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
@@ -11,6 +11,7 @@ import { ChartWizardPropertyPaneDataTabComponent } from './property-pane/data-ta
|
|
11
11
|
import { ChartWizardPropertyPaneChartTabComponent } from './property-pane/chart-tab.component';
|
12
12
|
import { ExportEvent } from './events';
|
13
13
|
import { ExportOptions } from './common/models';
|
14
|
+
import { WindowSettings } from './common/window-settings';
|
14
15
|
import * as i0 from "@angular/core";
|
15
16
|
/**
|
16
17
|
* Represents the Kendo UI for Angular Chart Wizard component.
|
@@ -35,6 +36,15 @@ export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
|
35
36
|
* The Chart Wizard export options.
|
36
37
|
*/
|
37
38
|
exportOptions: ExportOptions;
|
39
|
+
/**
|
40
|
+
* Specifies if the configuration pane is initially collapsed.
|
41
|
+
* @default false
|
42
|
+
*/
|
43
|
+
collapsedConfigurationPane: boolean;
|
44
|
+
/**
|
45
|
+
* The settings of the window.
|
46
|
+
*/
|
47
|
+
windowSettings: WindowSettings;
|
38
48
|
/**
|
39
49
|
* @hidden
|
40
50
|
*/
|
@@ -46,10 +56,7 @@ export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
|
46
56
|
/**
|
47
57
|
* @hidden
|
48
58
|
*/
|
49
|
-
exportDropdownItems:
|
50
|
-
text: string;
|
51
|
-
svgIcon: import("@progress/kendo-svg-icons").SVGIcon;
|
52
|
-
}[];
|
59
|
+
exportDropdownItems: any[];
|
53
60
|
/**
|
54
61
|
* Fires when the Chart Wizard Window is to be close.
|
55
62
|
*/
|
@@ -71,6 +78,117 @@ export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
|
71
78
|
* @hidden
|
72
79
|
*/
|
73
80
|
dataTab: ChartWizardPropertyPaneDataTabComponent;
|
81
|
+
/**
|
82
|
+
* @hidden
|
83
|
+
*/
|
84
|
+
messages: {
|
85
|
+
readonly windowTitle: string;
|
86
|
+
readonly exportButton: string;
|
87
|
+
readonly exportPDFButton: string;
|
88
|
+
readonly exportSVGButton: string;
|
89
|
+
readonly exportPNGButton: string;
|
90
|
+
readonly tabChart: string;
|
91
|
+
readonly tabData: string;
|
92
|
+
readonly tabFormat: string;
|
93
|
+
readonly barChart: string;
|
94
|
+
readonly barChartBar: string;
|
95
|
+
readonly barChartStackedBar: string;
|
96
|
+
readonly barChart100StackedBar: string;
|
97
|
+
readonly pieChart: string;
|
98
|
+
readonly pieChartPie: string;
|
99
|
+
readonly columnChart: string;
|
100
|
+
readonly columnChartColumn: string;
|
101
|
+
readonly columnChartStackedColumn: string;
|
102
|
+
readonly columnChart100StackedColumn: string;
|
103
|
+
readonly lineChart: string;
|
104
|
+
readonly lineChartLine: string;
|
105
|
+
readonly lineChartStackedLine: string;
|
106
|
+
readonly lineChart100StackedLine: string;
|
107
|
+
readonly scatterChart: string;
|
108
|
+
readonly scatterChartScatter: string;
|
109
|
+
readonly configuration: string;
|
110
|
+
readonly configurationCategoryAxis: string;
|
111
|
+
readonly configurationXAxis: string;
|
112
|
+
readonly configurationValueAxis: string;
|
113
|
+
readonly configurationSeries: string;
|
114
|
+
readonly configurationSeriesAdd: string;
|
115
|
+
readonly formatChartArea: string;
|
116
|
+
readonly formatChartAreaMargins: string;
|
117
|
+
readonly formatChartAreaMarginsAuto: string;
|
118
|
+
readonly formatChartAreaMarginsLeft: string;
|
119
|
+
readonly formatChartAreaMarginsRight: string;
|
120
|
+
readonly formatChartAreaMarginsTop: string;
|
121
|
+
readonly formatChartAreaMarginsBottom: string;
|
122
|
+
readonly formatChartAreaBackground: string;
|
123
|
+
readonly formatChartAreaBackgroundColor: string;
|
124
|
+
readonly formatTitle: string;
|
125
|
+
readonly formatTitleApplyTo: string;
|
126
|
+
readonly formatTitleChartTitle: string;
|
127
|
+
readonly formatTitleChartSubtitle: string;
|
128
|
+
readonly formatTitleLabel: string;
|
129
|
+
readonly formatTitleFont: string;
|
130
|
+
readonly formatTitleFontPlaceholder: string;
|
131
|
+
readonly formatTitleSize: string;
|
132
|
+
readonly formatTitleSizePlaceholder: string;
|
133
|
+
readonly formatTitleColor: string;
|
134
|
+
readonly formatSeries: string;
|
135
|
+
readonly formatSeriesApplyTo: string;
|
136
|
+
readonly formatSeriesAllSeries: string;
|
137
|
+
readonly formatSeriesColor: string;
|
138
|
+
readonly formatSeriesShowLabels: string;
|
139
|
+
readonly formatLegend: string;
|
140
|
+
readonly formatLegendShowLegend: string;
|
141
|
+
readonly formatLegendFont: string;
|
142
|
+
readonly formatLegendFontPlaceholder: string;
|
143
|
+
readonly formatLegendSize: string;
|
144
|
+
readonly formatLegendSizePlaceholder: string;
|
145
|
+
readonly formatLegendColor: string;
|
146
|
+
readonly formatLegendPosition: string;
|
147
|
+
readonly formatLegendPositionTop: string;
|
148
|
+
readonly formatLegendPositionBottom: string;
|
149
|
+
readonly formatLegendPositionLeft: string;
|
150
|
+
readonly formatLegendPositionRight: string;
|
151
|
+
readonly formatCategoryAxis: string;
|
152
|
+
readonly formatXAxis: string;
|
153
|
+
readonly formatCategoryAxisTitle: string;
|
154
|
+
readonly formatCategoryAxisTitlePlaceholder: string;
|
155
|
+
readonly formatCategoryAxisTitleFont: string;
|
156
|
+
readonly formatCategoryAxisTitleFontPlaceholder: string;
|
157
|
+
readonly formatCategoryAxisTitleSize: string;
|
158
|
+
readonly formatCategoryAxisTitleSizePlaceholder: string;
|
159
|
+
readonly formatCategoryAxisTitleColor: string;
|
160
|
+
readonly formatCategoryAxisLabels: string;
|
161
|
+
readonly formatCategoryAxisLabelsFont: string;
|
162
|
+
readonly formatCategoryAxisLabelsFontPlaceholder: string;
|
163
|
+
readonly formatCategoryAxisLabelsSize: string;
|
164
|
+
readonly formatCategoryAxisLabelsSizePlaceholder: string;
|
165
|
+
readonly formatCategoryAxisLabelsColor: string;
|
166
|
+
readonly formatCategoryAxisLabelsRotation: string;
|
167
|
+
readonly formatCategoryAxisLabelsRotationAuto: string;
|
168
|
+
readonly formatCategoryAxisLabelsReverseOrder: string;
|
169
|
+
readonly formatValueAxis: string;
|
170
|
+
readonly formatYAxis: string;
|
171
|
+
readonly formatValueAxisTitle: string;
|
172
|
+
readonly formatValueAxisTitlePlaceholder: string;
|
173
|
+
readonly formatValueAxisTitleFont: string;
|
174
|
+
readonly formatValueAxisTitleFontPlaceholder: string;
|
175
|
+
readonly formatValueAxisTitleSize: string;
|
176
|
+
readonly formatValueAxisTitleSizePlaceholder: string;
|
177
|
+
readonly formatValueAxisTitleColor: string;
|
178
|
+
readonly formatValueAxisLabels: string;
|
179
|
+
readonly formatValueAxisLabelsFormat: string;
|
180
|
+
readonly formatValueAxisLabelsFormatText: string;
|
181
|
+
readonly formatValueAxisLabelsFormatNumber: string;
|
182
|
+
readonly formatValueAxisLabelsFormatCurrency: string;
|
183
|
+
readonly formatValueAxisLabelsFormatPercent: string;
|
184
|
+
readonly formatValueAxisLabelsFont: string;
|
185
|
+
readonly formatValueAxisLabelsFontPlaceholder: string;
|
186
|
+
readonly formatValueAxisLabelsSize: string;
|
187
|
+
readonly formatValueAxisLabelsSizePlaceholder: string;
|
188
|
+
readonly formatValueAxisLabelsColor: string;
|
189
|
+
readonly formatValueAxisLabelsRotation: string;
|
190
|
+
readonly formatValueAxisLabelsRotationAuto: string;
|
191
|
+
};
|
74
192
|
private subscription;
|
75
193
|
constructor(localization: LocalizationService, stateService: StateService);
|
76
194
|
ngAfterViewInit(): void;
|
@@ -84,6 +202,14 @@ export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
|
84
202
|
* @hidden
|
85
203
|
*/
|
86
204
|
onExport(exportType: any): void;
|
205
|
+
/**
|
206
|
+
* @hidden
|
207
|
+
*/
|
208
|
+
get windowWidth(): number;
|
209
|
+
/**
|
210
|
+
* @hidden
|
211
|
+
*/
|
212
|
+
get windowHeight(): number;
|
87
213
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardComponent, never>;
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardComponent, "kendo-chartwizard", ["kendoChartWizard"], { "data": "data"; "defaultState": "defaultState"; "exportOptions": "exportOptions"; }, { "close": "close"; "export": "export"; }, never, never, true, never>;
|
214
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardComponent, "kendo-chartwizard", ["kendoChartWizard"], { "data": "data"; "defaultState": "defaultState"; "exportOptions": "exportOptions"; "collapsedConfigurationPane": "collapsedConfigurationPane"; "windowSettings": "windowSettings"; }, { "close": "close"; "export": "export"; }, never, never, true, never>;
|
89
215
|
}
|
package/chart-wizard.module.d.ts
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
import * as i1 from "./chart-wizard.component";
|
7
7
|
import * as i2 from "./grid-integration/grid-chart-wizard.directive";
|
8
|
+
import * as i3 from "./localization/custom-messages.component";
|
8
9
|
/**
|
9
10
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart Wizard component and directives.
|
10
11
|
*
|
@@ -14,6 +15,6 @@ import * as i2 from "./grid-integration/grid-chart-wizard.directive";
|
|
14
15
|
*/
|
15
16
|
export declare class ChartWizardModule {
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardModule, never>;
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartWizardModule, never, [typeof i1.ChartWizardComponent, typeof i2.ChartWizardGridBindingDirective], [typeof i1.ChartWizardComponent, typeof i2.ChartWizardGridBindingDirective]>;
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartWizardModule, never, [typeof i1.ChartWizardComponent, typeof i2.ChartWizardGridBindingDirective, typeof i3.CustomMessagesComponent], [typeof i1.ChartWizardComponent, typeof i2.ChartWizardGridBindingDirective, typeof i3.CustomMessagesComponent]>;
|
18
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<ChartWizardModule>;
|
19
20
|
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
5
|
+
import { WindowState } from '@progress/kendo-angular-dialog';
|
6
|
+
/**
|
7
|
+
* The window settings of the Chart Wizard.
|
8
|
+
*/
|
9
|
+
export interface WindowSettings {
|
10
|
+
/**
|
11
|
+
* Specifies the width of the Window. The width property has to be set in pixels.
|
12
|
+
*/
|
13
|
+
width?: number;
|
14
|
+
/**
|
15
|
+
* Specifies the height of the Window. The height property has to be set in pixels.
|
16
|
+
*/
|
17
|
+
height?: number;
|
18
|
+
/**
|
19
|
+
* Specifies the min-width of the Window. The min-width property has to be set in pixels.
|
20
|
+
*/
|
21
|
+
minWidth?: number;
|
22
|
+
/**
|
23
|
+
* Specifies the min-height of the Window. The min-height property has to be set in pixels.
|
24
|
+
*/
|
25
|
+
minHeight?: number;
|
26
|
+
/**
|
27
|
+
* Specifies the initial state of the Window.
|
28
|
+
*/
|
29
|
+
state?: WindowState;
|
30
|
+
/**
|
31
|
+
* Specifies the modality of the Window.
|
32
|
+
*/
|
33
|
+
modal?: boolean;
|
34
|
+
}
|
package/directives.d.ts
CHANGED
@@ -4,7 +4,8 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { ChartWizardComponent } from "./chart-wizard.component";
|
6
6
|
import { ChartWizardGridBindingDirective } from "./grid-integration/grid-chart-wizard.directive";
|
7
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
7
8
|
/**
|
8
9
|
* Utility array that contains all `@progress/kendo-angular-chart-wizard` related components and directives.
|
9
10
|
*/
|
10
|
-
export declare const KENDO_CHARTWIZARD: readonly [typeof ChartWizardComponent, typeof ChartWizardGridBindingDirective];
|
11
|
+
export declare const KENDO_CHARTWIZARD: readonly [typeof ChartWizardComponent, typeof ChartWizardGridBindingDirective, typeof CustomMessagesComponent];
|