@progress/kendo-angular-chart-wizard 16.10.1-develop.3 → 16.11.0-develop.10
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 +112 -4
- package/chart-wizard.module.d.ts +2 -1
- package/directives.d.ts +2 -1
- package/esm2020/chart-wizard.component.mjs +683 -30
- package/esm2020/chart-wizard.module.mjs +3 -2
- 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 +20 -14
- 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 +1251 -230
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +1249 -230
- package/index.d.ts +1 -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 +16 -16
- 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
package/index.d.ts
CHANGED
@@ -9,5 +9,6 @@ export * from './common';
|
|
9
9
|
export * from './events';
|
10
10
|
export { ExportOptions } from './common/models';
|
11
11
|
export { ChartWizardInitialState } from './chart-wizard-state';
|
12
|
+
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
12
13
|
export { ChartWizardModule } from './chart-wizard.module';
|
13
14
|
export { KENDO_CHARTWIZARD } from './directives';
|
@@ -0,0 +1,14 @@
|
|
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 { LocalizationService, MessageService } from '@progress/kendo-angular-l10n';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
/**
|
8
|
+
* @hidden
|
9
|
+
*/
|
10
|
+
export declare class ChartWizardLocalizationService extends LocalizationService {
|
11
|
+
constructor(prefix: string, messageService: MessageService, _rtl: boolean);
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardLocalizationService, [null, { optional: true; }, { optional: true; }]>;
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartWizardLocalizationService>;
|
14
|
+
}
|
@@ -0,0 +1,25 @@
|
|
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 { LocalizationService } from '@progress/kendo-angular-l10n';
|
6
|
+
import { Messages } from './messages';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
/**
|
9
|
+
* Custom component messages override default component messages.
|
10
|
+
* @example
|
11
|
+
* ```html
|
12
|
+
* <kendo-chartwizard [data]="data">
|
13
|
+
* <kendo-chartwizard-messages
|
14
|
+
* windowTitle="Title"
|
15
|
+
* ></kendo-chartwizard-messages>
|
16
|
+
* </kendo-chartwizard>
|
17
|
+
* ```
|
18
|
+
*/
|
19
|
+
export declare class CustomMessagesComponent extends Messages {
|
20
|
+
protected service: LocalizationService;
|
21
|
+
constructor(service: LocalizationService);
|
22
|
+
protected get override(): boolean;
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomMessagesComponent, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomMessagesComponent, "kendo-chartwizard-messages", never, {}, {}, never, never, true, never>;
|
25
|
+
}
|
@@ -0,0 +1,16 @@
|
|
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 { LocalizationService } from '@progress/kendo-angular-l10n';
|
6
|
+
import { Messages } from './messages';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
/**
|
9
|
+
* @hidden
|
10
|
+
*/
|
11
|
+
export declare class LocalizedMessagesDirective extends Messages {
|
12
|
+
protected service: LocalizationService;
|
13
|
+
constructor(service: LocalizationService);
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoChartWizardLocalizedMessages]", never, {}, {}, never, never, true, never>;
|
16
|
+
}
|
@@ -0,0 +1,437 @@
|
|
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 { ComponentMessages } from '@progress/kendo-angular-l10n';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
/**
|
8
|
+
* @hidden
|
9
|
+
*/
|
10
|
+
export declare class Messages extends ComponentMessages {
|
11
|
+
/**
|
12
|
+
* The title of the window.
|
13
|
+
*/
|
14
|
+
windowTitle: string;
|
15
|
+
/**
|
16
|
+
* The text of the **Export** DropDownButton.
|
17
|
+
*/
|
18
|
+
exportButton: string;
|
19
|
+
/**
|
20
|
+
* The text of the **Export** DropDownButton option that represents PDF.
|
21
|
+
*/
|
22
|
+
exportPDFButton: string;
|
23
|
+
/**
|
24
|
+
* The text of the **Export** DropDownButton option that represents SVG.
|
25
|
+
*/
|
26
|
+
exportSVGButton: string;
|
27
|
+
/**
|
28
|
+
* The text of the **Export** DropDownButton option that represents PNG.
|
29
|
+
*/
|
30
|
+
exportPNGButton: string;
|
31
|
+
/**
|
32
|
+
* The text of the **Chart** tab of the property pane.
|
33
|
+
*/
|
34
|
+
tabChart: string;
|
35
|
+
/**
|
36
|
+
* The text of the **Data** tab of the property pane.
|
37
|
+
*/
|
38
|
+
tabData: string;
|
39
|
+
/**
|
40
|
+
* The text of the **Format** tab of the property pane.
|
41
|
+
*/
|
42
|
+
tabFormat: string;
|
43
|
+
/**
|
44
|
+
* The text of the **Chart** panel that represents Bar Charts.
|
45
|
+
*/
|
46
|
+
barChart: string;
|
47
|
+
/**
|
48
|
+
* The text of the Bar Chart type.
|
49
|
+
*/
|
50
|
+
barChartBar: string;
|
51
|
+
/**
|
52
|
+
* The text of the Stacked Bar Chart type.
|
53
|
+
*/
|
54
|
+
barChartStackedBar: string;
|
55
|
+
/**
|
56
|
+
* The text of the 100% Stacked Bar Chart type.
|
57
|
+
*/
|
58
|
+
barChart100StackedBar: string;
|
59
|
+
/**
|
60
|
+
* The text of the **Chart** panel that represents Pie Charts.
|
61
|
+
*/
|
62
|
+
pieChart: string;
|
63
|
+
/**
|
64
|
+
* The text of the Pie Chart type.
|
65
|
+
*/
|
66
|
+
pieChartPie: string;
|
67
|
+
/**
|
68
|
+
* The text of the **Chart** panel that represents Column Charts.
|
69
|
+
*/
|
70
|
+
columnChart: string;
|
71
|
+
/**
|
72
|
+
* The text of the Column Chart type.
|
73
|
+
*/
|
74
|
+
columnChartColumn: string;
|
75
|
+
/**
|
76
|
+
* The text of the Stacked Column Chart type.
|
77
|
+
*/
|
78
|
+
columnChartStackedColumn: string;
|
79
|
+
/**
|
80
|
+
* The text of the 100% Stacked Column Chart type.
|
81
|
+
*/
|
82
|
+
columnChart100StackedColumn: string;
|
83
|
+
/**
|
84
|
+
* The text of the **Chart** panel that represents Line Charts.
|
85
|
+
*/
|
86
|
+
lineChart: string;
|
87
|
+
/**
|
88
|
+
* The text of the Line Chart type.
|
89
|
+
*/
|
90
|
+
lineChartLine: string;
|
91
|
+
/**
|
92
|
+
* The text of the Stacked Line Chart type.
|
93
|
+
*/
|
94
|
+
lineChartStackedLine: string;
|
95
|
+
/**
|
96
|
+
* The text of the 100% Stacked Line Chart type.
|
97
|
+
*/
|
98
|
+
lineChart100StackedLine: string;
|
99
|
+
/**
|
100
|
+
* The text of the **Chart** panel that represents Scatter Charts.
|
101
|
+
*/
|
102
|
+
scatterChart: string;
|
103
|
+
/**
|
104
|
+
* The text of the Scatter Chart type.
|
105
|
+
*/
|
106
|
+
scatterChartScatter: string;
|
107
|
+
/**
|
108
|
+
* The text of the **Configuration** panel of the **Data** tab.
|
109
|
+
*/
|
110
|
+
configuration: string;
|
111
|
+
/**
|
112
|
+
* The caption of the **Category Axis** DropDown in the **Configuration** panel.
|
113
|
+
*/
|
114
|
+
configurationCategoryAxis: string;
|
115
|
+
/**
|
116
|
+
* The caption of the **X Axis** DropDown in the **Configuration** panel when a Scatter Chart is selected.
|
117
|
+
*/
|
118
|
+
configurationXAxis: string;
|
119
|
+
/**
|
120
|
+
* The caption of the **Value Axis** DropDown in the **Configuration** panel when a Pie Chart is selected.
|
121
|
+
*/
|
122
|
+
configurationValueAxis: string;
|
123
|
+
/**
|
124
|
+
* The text of the **Series** Grid in the **Configuration** panel when a Categorical Chart is selected.
|
125
|
+
*/
|
126
|
+
configurationSeries: string;
|
127
|
+
/**
|
128
|
+
* The text of the **Add Series** button in the Grid of the **Configuration** panel.
|
129
|
+
*/
|
130
|
+
configurationSeriesAdd: string;
|
131
|
+
/**
|
132
|
+
* The text of the **Chart Area** panel of the **Format** tab.
|
133
|
+
*/
|
134
|
+
formatChartArea: string;
|
135
|
+
/**
|
136
|
+
* The text of the **Margins** settings of the **Chart Area** panel.
|
137
|
+
*/
|
138
|
+
formatChartAreaMargins: string;
|
139
|
+
/**
|
140
|
+
* The placeholder of the **Margins** settings of the **Chart Area** panel.
|
141
|
+
*/
|
142
|
+
formatChartAreaMarginsAuto: string;
|
143
|
+
/**
|
144
|
+
* The label of the **Left** margin setting of the **Chart Area** panel.
|
145
|
+
*/
|
146
|
+
formatChartAreaMarginsLeft: string;
|
147
|
+
/**
|
148
|
+
* The label of the **Right** margin setting of the **Chart Area** panel.
|
149
|
+
*/
|
150
|
+
formatChartAreaMarginsRight: string;
|
151
|
+
/**
|
152
|
+
* The label of the **Top** margin setting of the **Chart Area** panel.
|
153
|
+
*/
|
154
|
+
formatChartAreaMarginsTop: string;
|
155
|
+
/**
|
156
|
+
* The label of the **Bottom** margin setting of the **Chart Area** panel.
|
157
|
+
*/
|
158
|
+
formatChartAreaMarginsBottom: string;
|
159
|
+
/**
|
160
|
+
* The text of the **Background** settings of the **Chart Area** panel.
|
161
|
+
*/
|
162
|
+
formatChartAreaBackground: string;
|
163
|
+
/**
|
164
|
+
* The label of the **Color** background setting of the **Chart Area** panel.
|
165
|
+
*/
|
166
|
+
formatChartAreaBackgroundColor: string;
|
167
|
+
/**
|
168
|
+
* The text of the **Title** panel of the **Format** tab.
|
169
|
+
*/
|
170
|
+
formatTitle: string;
|
171
|
+
/**
|
172
|
+
* The label of the **Apply to** DropDown of the **Title** panel.
|
173
|
+
*/
|
174
|
+
formatTitleApplyTo: string;
|
175
|
+
/**
|
176
|
+
* The text of the **Chart Title** option of the **Apply to** DropDown in the **Title** panel.
|
177
|
+
*/
|
178
|
+
formatTitleChartTitle: string;
|
179
|
+
/**
|
180
|
+
* The text of the **Chart Subtitle** option of the **Apply to** DropDown in the **Title** panel.
|
181
|
+
*/
|
182
|
+
formatTitleChartSubtitle: string;
|
183
|
+
/**
|
184
|
+
* The label of the **Title** input of the **Title** panel.
|
185
|
+
*/
|
186
|
+
formatTitleLabel: string;
|
187
|
+
/**
|
188
|
+
* The label of the **Font** setting of the **Title** panel.
|
189
|
+
*/
|
190
|
+
formatTitleFont: string;
|
191
|
+
/**
|
192
|
+
* The placeholder of the **Font** setting of the **Title** panel.
|
193
|
+
*/
|
194
|
+
formatTitleFontPlaceholder: string;
|
195
|
+
/**
|
196
|
+
* The label of the **Size** setting of the **Title** panel.
|
197
|
+
*/
|
198
|
+
formatTitleSize: string;
|
199
|
+
/**
|
200
|
+
* The placeholder of the **Size** setting of the **Title** panel.
|
201
|
+
*/
|
202
|
+
formatTitleSizePlaceholder: string;
|
203
|
+
/**
|
204
|
+
* The label of the **Color** setting of the **Title** panel.
|
205
|
+
*/
|
206
|
+
formatTitleColor: string;
|
207
|
+
/**
|
208
|
+
* The text of the **Series** panel of the **Format** tab.
|
209
|
+
*/
|
210
|
+
formatSeries: string;
|
211
|
+
/**
|
212
|
+
* The label of the **Apply to** DropDown of the **Series** panel.
|
213
|
+
*/
|
214
|
+
formatSeriesApplyTo: string;
|
215
|
+
/**
|
216
|
+
* The text of the **All Series** option of the **Apply to** DropDown in the **Series** panel.
|
217
|
+
*/
|
218
|
+
formatSeriesAllSeries: string;
|
219
|
+
/**
|
220
|
+
* The label of the **Color** setting of the **Series** panel.
|
221
|
+
*/
|
222
|
+
formatSeriesColor: string;
|
223
|
+
/**
|
224
|
+
* The label of the **Show Labels** checkbox of the **Series** panel.
|
225
|
+
*/
|
226
|
+
formatSeriesShowLabels: string;
|
227
|
+
/**
|
228
|
+
* The text of the **Legend** panel of the **Format** tab.
|
229
|
+
*/
|
230
|
+
formatLegend: string;
|
231
|
+
/**
|
232
|
+
* The label of the **Show Legend** switch of the **Legend** panel.
|
233
|
+
*/
|
234
|
+
formatLegendShowLegend: string;
|
235
|
+
/**
|
236
|
+
* The label of the **Font** setting of the **Legend** panel.
|
237
|
+
*/
|
238
|
+
formatLegendFont: string;
|
239
|
+
/**
|
240
|
+
* The placeholder of the **Font** setting of the **Legend** panel.
|
241
|
+
*/
|
242
|
+
formatLegendFontPlaceholder: string;
|
243
|
+
/**
|
244
|
+
* The label of the **Size** setting of the **Legend** panel.
|
245
|
+
*/
|
246
|
+
formatLegendSize: string;
|
247
|
+
/**
|
248
|
+
* The placeholder of the **Size** setting of the **Legend** panel.
|
249
|
+
*/
|
250
|
+
formatLegendSizePlaceholder: string;
|
251
|
+
/**
|
252
|
+
* The label of the **Color** setting of the **Legend** panel.
|
253
|
+
*/
|
254
|
+
formatLegendColor: string;
|
255
|
+
/**
|
256
|
+
* The label of the **Posititon** DropDown of the **Legend** panel.
|
257
|
+
*/
|
258
|
+
formatLegendPosition: string;
|
259
|
+
/**
|
260
|
+
* The text of the **Top** option of the **Position** DropDown of the **Legend** panel.
|
261
|
+
*/
|
262
|
+
formatLegendPositionTop: string;
|
263
|
+
/**
|
264
|
+
* The text of the **Bottom** option of the **Position** DropDown of the **Legend** panel.
|
265
|
+
*/
|
266
|
+
formatLegendPositionBottom: string;
|
267
|
+
/**
|
268
|
+
* The text of the **Left** option of the **Position** DropDown of the **Legend** panel.
|
269
|
+
*/
|
270
|
+
formatLegendPositionLeft: string;
|
271
|
+
/**
|
272
|
+
* The text of the **Right** option of the **Position** DropDown of the **Legend** panel.
|
273
|
+
*/
|
274
|
+
formatLegendPositionRight: string;
|
275
|
+
/**
|
276
|
+
* The text of the **Category Axis** panel of the **Format** tab.
|
277
|
+
*/
|
278
|
+
formatCategoryAxis: string;
|
279
|
+
/**
|
280
|
+
* The text of the **X Axis** panel of the **Format** tab when a Scatter Chart is selected.
|
281
|
+
*/
|
282
|
+
formatXAxis: string;
|
283
|
+
/**
|
284
|
+
* The label of the **Title** settings of the **Category Axis** panel.
|
285
|
+
*/
|
286
|
+
formatCategoryAxisTitle: string;
|
287
|
+
/**
|
288
|
+
* The placeholder of the **Title** input of the **Category Axis** panel.
|
289
|
+
*/
|
290
|
+
formatCategoryAxisTitlePlaceholder: string;
|
291
|
+
/**
|
292
|
+
* The label of the **Font** settings of the **Title** in the **Category Axis** panel.
|
293
|
+
*/
|
294
|
+
formatCategoryAxisTitleFont: string;
|
295
|
+
/**
|
296
|
+
* The placeholder of the **Font** settings of the **Title** in the **Category Axis** panel.
|
297
|
+
*/
|
298
|
+
formatCategoryAxisTitleFontPlaceholder: string;
|
299
|
+
/**
|
300
|
+
* The label of the **Size** settings of the **Title** in the **Category Axis** panel.
|
301
|
+
*/
|
302
|
+
formatCategoryAxisTitleSize: string;
|
303
|
+
/**
|
304
|
+
* The placeholder of the **Size** settings of the **Title** in the **Category Axis** panel.
|
305
|
+
*/
|
306
|
+
formatCategoryAxisTitleSizePlaceholder: string;
|
307
|
+
/**
|
308
|
+
* The label of the **Color** settings of the **Title** in the **Category Axis** panel.
|
309
|
+
*/
|
310
|
+
formatCategoryAxisTitleColor: string;
|
311
|
+
/**
|
312
|
+
* The label of the **Labels** settings of the **Category Axis** panel.
|
313
|
+
*/
|
314
|
+
formatCategoryAxisLabels: string;
|
315
|
+
/**
|
316
|
+
* The label of the **Font** settings of the **Labels** in the **Category Axis** panel.
|
317
|
+
*/
|
318
|
+
formatCategoryAxisLabelsFont: string;
|
319
|
+
/**
|
320
|
+
* The placeholder of the **Font** settings of the **Labels** in the **Category Axis** panel.
|
321
|
+
*/
|
322
|
+
formatCategoryAxisLabelsFontPlaceholder: string;
|
323
|
+
/**
|
324
|
+
* The label of the **Size** settings of the **Labels** in the **Category Axis** panel.
|
325
|
+
*/
|
326
|
+
formatCategoryAxisLabelsSize: string;
|
327
|
+
/**
|
328
|
+
* The placeholder of the **Size** settings of the **Labels** in the **Category Axis** panel.
|
329
|
+
*/
|
330
|
+
formatCategoryAxisLabelsSizePlaceholder: string;
|
331
|
+
/**
|
332
|
+
* The label of the **Color** settings of the **Labels** in the **Category Axis** panel.
|
333
|
+
*/
|
334
|
+
formatCategoryAxisLabelsColor: string;
|
335
|
+
/**
|
336
|
+
* The label of the **Rotation** settings of the **Labels** in the **Category Axis** panel.
|
337
|
+
*/
|
338
|
+
formatCategoryAxisLabelsRotation: string;
|
339
|
+
/**
|
340
|
+
* The **Auto** option of the **Rotation** settings of the **Labels** in the **Category Axis** panel.
|
341
|
+
*/
|
342
|
+
formatCategoryAxisLabelsRotationAuto: string;
|
343
|
+
/**
|
344
|
+
* The label of the **Reverse Order** checkbox of the **Labels** in the **Category Axis** panel.
|
345
|
+
*/
|
346
|
+
formatCategoryAxisLabelsReverseOrder: string;
|
347
|
+
/**
|
348
|
+
* The text of the **Value Axis** panel of the **Format** tab.
|
349
|
+
*/
|
350
|
+
formatValueAxis: string;
|
351
|
+
/**
|
352
|
+
* The text of the **Y Axis** panel of the **Format** tab.
|
353
|
+
*/
|
354
|
+
formatYAxis: string;
|
355
|
+
/**
|
356
|
+
* The label of the **Title** settings of the **Value Axis** panel.
|
357
|
+
*/
|
358
|
+
formatValueAxisTitle: string;
|
359
|
+
/**
|
360
|
+
* The placeholder of the **Title** settings of the **Value Axis** panel.
|
361
|
+
*/
|
362
|
+
formatValueAxisTitlePlaceholder: string;
|
363
|
+
/**
|
364
|
+
* The label of the **Font** settings of the **Value Axis** panel.
|
365
|
+
*/
|
366
|
+
formatValueAxisTitleFont: string;
|
367
|
+
/**
|
368
|
+
* The placeholder of the **Font** settings of the **Value Axis** panel.
|
369
|
+
*/
|
370
|
+
formatValueAxisTitleFontPlaceholder: string;
|
371
|
+
/**
|
372
|
+
* The label of the **Size** settings of the **Value Axis** panel.
|
373
|
+
*/
|
374
|
+
formatValueAxisTitleSize: string;
|
375
|
+
/**
|
376
|
+
* The placeholder of the **Size** settings of the **Value Axis** panel.
|
377
|
+
*/
|
378
|
+
formatValueAxisTitleSizePlaceholder: string;
|
379
|
+
/**
|
380
|
+
* The label of the **Color** settings of the **Value Axis** panel.
|
381
|
+
*/
|
382
|
+
formatValueAxisTitleColor: string;
|
383
|
+
/**
|
384
|
+
* The label of the **Labels** settings of the **Value Axis** panel.
|
385
|
+
*/
|
386
|
+
formatValueAxisLabels: string;
|
387
|
+
/**
|
388
|
+
* The label of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
|
389
|
+
*/
|
390
|
+
formatValueAxisLabelsFormat: string;
|
391
|
+
/**
|
392
|
+
* The **Text** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
|
393
|
+
*/
|
394
|
+
formatValueAxisLabelsFormatText: string;
|
395
|
+
/**
|
396
|
+
* The **Number** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
|
397
|
+
*/
|
398
|
+
formatValueAxisLabelsFormatNumber: string;
|
399
|
+
/**
|
400
|
+
* The **Currency** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
|
401
|
+
*/
|
402
|
+
formatValueAxisLabelsFormatCurrency: string;
|
403
|
+
/**
|
404
|
+
* The **Percent** option of the **Format** DropDown of the **Labels** settings of the **Value Axis** panel.
|
405
|
+
*/
|
406
|
+
formatValueAxisLabelsFormatPercent: string;
|
407
|
+
/**
|
408
|
+
* The label of the **Font** settings of the **Labels** in the **Value Axis** panel.
|
409
|
+
*/
|
410
|
+
formatValueAxisLabelsFont: string;
|
411
|
+
/**
|
412
|
+
* The placeholder of the **Font** settings of the **Labels** in the **Value Axis** panel.
|
413
|
+
*/
|
414
|
+
formatValueAxisLabelsFontPlaceholder: string;
|
415
|
+
/**
|
416
|
+
* The label of the **Size** settings of the **Labels** in the **Value Axis** panel.
|
417
|
+
*/
|
418
|
+
formatValueAxisLabelsSize: string;
|
419
|
+
/**
|
420
|
+
* The placeholder of the **Size** settings of the **Labels** in the **Value Axis** panel.
|
421
|
+
*/
|
422
|
+
formatValueAxisLabelsSizePlaceholder: string;
|
423
|
+
/**
|
424
|
+
* The label of the **Color** settings of the **Labels** in the **Value Axis** panel.
|
425
|
+
*/
|
426
|
+
formatValueAxisLabelsColor: string;
|
427
|
+
/**
|
428
|
+
* The label of the **Rotation** settings of the **Labels** in the **Value Axis** panel.
|
429
|
+
*/
|
430
|
+
formatValueAxisLabelsRotation: string;
|
431
|
+
/**
|
432
|
+
* The **Auto** option of the **Rotation** settings of the **Labels** in the **Value Axis** panel.
|
433
|
+
*/
|
434
|
+
formatValueAxisLabelsRotationAuto: string;
|
435
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
436
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "[kendoChartWizardMessages]", never, { "windowTitle": "windowTitle"; "exportButton": "exportButton"; "exportPDFButton": "exportPDFButton"; "exportSVGButton": "exportSVGButton"; "exportPNGButton": "exportPNGButton"; "tabChart": "tabChart"; "tabData": "tabData"; "tabFormat": "tabFormat"; "barChart": "barChart"; "barChartBar": "barChartBar"; "barChartStackedBar": "barChartStackedBar"; "barChart100StackedBar": "barChart100StackedBar"; "pieChart": "pieChart"; "pieChartPie": "pieChartPie"; "columnChart": "columnChart"; "columnChartColumn": "columnChartColumn"; "columnChartStackedColumn": "columnChartStackedColumn"; "columnChart100StackedColumn": "columnChart100StackedColumn"; "lineChart": "lineChart"; "lineChartLine": "lineChartLine"; "lineChartStackedLine": "lineChartStackedLine"; "lineChart100StackedLine": "lineChart100StackedLine"; "scatterChart": "scatterChart"; "scatterChartScatter": "scatterChartScatter"; "configuration": "configuration"; "configurationCategoryAxis": "configurationCategoryAxis"; "configurationXAxis": "configurationXAxis"; "configurationValueAxis": "configurationValueAxis"; "configurationSeries": "configurationSeries"; "configurationSeriesAdd": "configurationSeriesAdd"; "formatChartArea": "formatChartArea"; "formatChartAreaMargins": "formatChartAreaMargins"; "formatChartAreaMarginsAuto": "formatChartAreaMarginsAuto"; "formatChartAreaMarginsLeft": "formatChartAreaMarginsLeft"; "formatChartAreaMarginsRight": "formatChartAreaMarginsRight"; "formatChartAreaMarginsTop": "formatChartAreaMarginsTop"; "formatChartAreaMarginsBottom": "formatChartAreaMarginsBottom"; "formatChartAreaBackground": "formatChartAreaBackground"; "formatChartAreaBackgroundColor": "formatChartAreaBackgroundColor"; "formatTitle": "formatTitle"; "formatTitleApplyTo": "formatTitleApplyTo"; "formatTitleChartTitle": "formatTitleChartTitle"; "formatTitleChartSubtitle": "formatTitleChartSubtitle"; "formatTitleLabel": "formatTitleLabel"; "formatTitleFont": "formatTitleFont"; "formatTitleFontPlaceholder": "formatTitleFontPlaceholder"; "formatTitleSize": "formatTitleSize"; "formatTitleSizePlaceholder": "formatTitleSizePlaceholder"; "formatTitleColor": "formatTitleColor"; "formatSeries": "formatSeries"; "formatSeriesApplyTo": "formatSeriesApplyTo"; "formatSeriesAllSeries": "formatSeriesAllSeries"; "formatSeriesColor": "formatSeriesColor"; "formatSeriesShowLabels": "formatSeriesShowLabels"; "formatLegend": "formatLegend"; "formatLegendShowLegend": "formatLegendShowLegend"; "formatLegendFont": "formatLegendFont"; "formatLegendFontPlaceholder": "formatLegendFontPlaceholder"; "formatLegendSize": "formatLegendSize"; "formatLegendSizePlaceholder": "formatLegendSizePlaceholder"; "formatLegendColor": "formatLegendColor"; "formatLegendPosition": "formatLegendPosition"; "formatLegendPositionTop": "formatLegendPositionTop"; "formatLegendPositionBottom": "formatLegendPositionBottom"; "formatLegendPositionLeft": "formatLegendPositionLeft"; "formatLegendPositionRight": "formatLegendPositionRight"; "formatCategoryAxis": "formatCategoryAxis"; "formatXAxis": "formatXAxis"; "formatCategoryAxisTitle": "formatCategoryAxisTitle"; "formatCategoryAxisTitlePlaceholder": "formatCategoryAxisTitlePlaceholder"; "formatCategoryAxisTitleFont": "formatCategoryAxisTitleFont"; "formatCategoryAxisTitleFontPlaceholder": "formatCategoryAxisTitleFontPlaceholder"; "formatCategoryAxisTitleSize": "formatCategoryAxisTitleSize"; "formatCategoryAxisTitleSizePlaceholder": "formatCategoryAxisTitleSizePlaceholder"; "formatCategoryAxisTitleColor": "formatCategoryAxisTitleColor"; "formatCategoryAxisLabels": "formatCategoryAxisLabels"; "formatCategoryAxisLabelsFont": "formatCategoryAxisLabelsFont"; "formatCategoryAxisLabelsFontPlaceholder": "formatCategoryAxisLabelsFontPlaceholder"; "formatCategoryAxisLabelsSize": "formatCategoryAxisLabelsSize"; "formatCategoryAxisLabelsSizePlaceholder": "formatCategoryAxisLabelsSizePlaceholder"; "formatCategoryAxisLabelsColor": "formatCategoryAxisLabelsColor"; "formatCategoryAxisLabelsRotation": "formatCategoryAxisLabelsRotation"; "formatCategoryAxisLabelsRotationAuto": "formatCategoryAxisLabelsRotationAuto"; "formatCategoryAxisLabelsReverseOrder": "formatCategoryAxisLabelsReverseOrder"; "formatValueAxis": "formatValueAxis"; "formatYAxis": "formatYAxis"; "formatValueAxisTitle": "formatValueAxisTitle"; "formatValueAxisTitlePlaceholder": "formatValueAxisTitlePlaceholder"; "formatValueAxisTitleFont": "formatValueAxisTitleFont"; "formatValueAxisTitleFontPlaceholder": "formatValueAxisTitleFontPlaceholder"; "formatValueAxisTitleSize": "formatValueAxisTitleSize"; "formatValueAxisTitleSizePlaceholder": "formatValueAxisTitleSizePlaceholder"; "formatValueAxisTitleColor": "formatValueAxisTitleColor"; "formatValueAxisLabels": "formatValueAxisLabels"; "formatValueAxisLabelsFormat": "formatValueAxisLabelsFormat"; "formatValueAxisLabelsFormatText": "formatValueAxisLabelsFormatText"; "formatValueAxisLabelsFormatNumber": "formatValueAxisLabelsFormatNumber"; "formatValueAxisLabelsFormatCurrency": "formatValueAxisLabelsFormatCurrency"; "formatValueAxisLabelsFormatPercent": "formatValueAxisLabelsFormatPercent"; "formatValueAxisLabelsFont": "formatValueAxisLabelsFont"; "formatValueAxisLabelsFontPlaceholder": "formatValueAxisLabelsFontPlaceholder"; "formatValueAxisLabelsSize": "formatValueAxisLabelsSize"; "formatValueAxisLabelsSizePlaceholder": "formatValueAxisLabelsSizePlaceholder"; "formatValueAxisLabelsColor": "formatValueAxisLabelsColor"; "formatValueAxisLabelsRotation": "formatValueAxisLabelsRotation"; "formatValueAxisLabelsRotationAuto": "formatValueAxisLabelsRotationAuto"; }, {}, never, never, false, never>;
|
437
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-chart-wizard",
|
3
|
-
"version": "16.
|
3
|
+
"version": "16.11.0-develop.10",
|
4
4
|
"description": "Kendo UI Angular Chart Wizard component",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -23,20 +23,20 @@
|
|
23
23
|
"@angular/common": "15 - 18",
|
24
24
|
"@angular/core": "15 - 18",
|
25
25
|
"@angular/platform-browser": "15 - 18",
|
26
|
-
"@progress/kendo-angular-common": "16.
|
27
|
-
"@progress/kendo-angular-dialog": "16.
|
28
|
-
"@progress/kendo-angular-buttons": "16.
|
29
|
-
"@progress/kendo-angular-grid": "16.
|
30
|
-
"@progress/kendo-angular-charts": "16.
|
31
|
-
"@progress/kendo-angular-dropdowns": "16.
|
32
|
-
"@progress/kendo-angular-layout": "16.
|
33
|
-
"@progress/kendo-angular-icons": "16.
|
34
|
-
"@progress/kendo-angular-inputs": "16.
|
35
|
-
"@progress/kendo-angular-label": "16.
|
36
|
-
"@progress/kendo-angular-intl": "16.
|
37
|
-
"@progress/kendo-angular-l10n": "16.
|
38
|
-
"@progress/kendo-angular-navigation": "16.
|
39
|
-
"@progress/kendo-angular-popup": "16.
|
26
|
+
"@progress/kendo-angular-common": "16.11.0-develop.10",
|
27
|
+
"@progress/kendo-angular-dialog": "16.11.0-develop.10",
|
28
|
+
"@progress/kendo-angular-buttons": "16.11.0-develop.10",
|
29
|
+
"@progress/kendo-angular-grid": "16.11.0-develop.10",
|
30
|
+
"@progress/kendo-angular-charts": "16.11.0-develop.10",
|
31
|
+
"@progress/kendo-angular-dropdowns": "16.11.0-develop.10",
|
32
|
+
"@progress/kendo-angular-layout": "16.11.0-develop.10",
|
33
|
+
"@progress/kendo-angular-icons": "16.11.0-develop.10",
|
34
|
+
"@progress/kendo-angular-inputs": "16.11.0-develop.10",
|
35
|
+
"@progress/kendo-angular-label": "16.11.0-develop.10",
|
36
|
+
"@progress/kendo-angular-intl": "16.11.0-develop.10",
|
37
|
+
"@progress/kendo-angular-l10n": "16.11.0-develop.10",
|
38
|
+
"@progress/kendo-angular-navigation": "16.11.0-develop.10",
|
39
|
+
"@progress/kendo-angular-popup": "16.11.0-develop.10",
|
40
40
|
"@progress/kendo-drawing": "^1.20.4",
|
41
41
|
"@progress/kendo-file-saver": "^1.1.1",
|
42
42
|
"@progress/kendo-licensing": "^1.0.2",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"dependencies": {
|
46
46
|
"tslib": "^2.3.1",
|
47
47
|
"@progress/kendo-charts": "2.5.2",
|
48
|
-
"@progress/kendo-angular-schematics": "16.
|
48
|
+
"@progress/kendo-angular-schematics": "16.11.0-develop.10",
|
49
49
|
"@progress/kendo-common": "^0.2.2"
|
50
50
|
},
|
51
51
|
"schematics": "./schematics/collection.json",
|
@@ -4,7 +4,7 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { AfterViewChecked, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
6
6
|
import { StateService } from '../state.service';
|
7
|
-
import {
|
7
|
+
import { ChartWizardLocalizationService } from '../localization/chartwizard-localization.service';
|
8
8
|
import * as i0 from "@angular/core";
|
9
9
|
/**
|
10
10
|
* @hidden
|
@@ -25,10 +25,11 @@ export declare class ChartWizardPropertyPaneChartTabComponent implements AfterVi
|
|
25
25
|
chartLineStackedIcon: import("@progress/kendo-svg-icons").SVGIcon;
|
26
26
|
chartLineStacked100Icon: import("@progress/kendo-svg-icons").SVGIcon;
|
27
27
|
chartScatterIcon: import("@progress/kendo-svg-icons").SVGIcon;
|
28
|
-
constructor(stateService: StateService, cdr: ChangeDetectorRef, localization:
|
28
|
+
constructor(stateService: StateService, cdr: ChangeDetectorRef, localization: ChartWizardLocalizationService);
|
29
29
|
ngAfterViewChecked(): void;
|
30
30
|
ngOnDestroy(): void;
|
31
31
|
detectChanges(): void;
|
32
|
+
messageFor(key: string): string;
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneChartTabComponent, never>;
|
33
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneChartTabComponent, "kendo-chartwizard-property-pane-chart-tab", never, {}, {}, never, never, true, never>;
|
34
35
|
}
|
@@ -7,6 +7,7 @@ import { StateService } from '../state.service';
|
|
7
7
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
8
8
|
import { CreateFormGroupArgs, GridComponent, RemoveEvent } from '@progress/kendo-angular-grid';
|
9
9
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
10
|
+
import { ChartWizardLocalizationService } from '../localization/chartwizard-localization.service';
|
10
11
|
import * as i0 from "@angular/core";
|
11
12
|
/**
|
12
13
|
* @hidden
|
@@ -16,13 +17,14 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
|
|
16
17
|
private formBuilder;
|
17
18
|
private cdr;
|
18
19
|
renderer: Renderer2;
|
20
|
+
private localization;
|
19
21
|
categoryAxisX: import("@progress/kendo-charts").ActionTypes;
|
20
22
|
valueAxisY: import("@progress/kendo-charts").ActionTypes;
|
21
23
|
trashIcon: SVGIcon;
|
22
24
|
plusIcon: SVGIcon;
|
23
25
|
isCategorical: (seriesType?: import("@progress/kendo-charts/dist/npm/chart-wizard").ChartWizardSeriesType) => boolean;
|
24
26
|
grid: GridComponent;
|
25
|
-
constructor(stateService: StateService, formBuilder: FormBuilder, cdr: ChangeDetectorRef, renderer: Renderer2);
|
27
|
+
constructor(stateService: StateService, formBuilder: FormBuilder, cdr: ChangeDetectorRef, renderer: Renderer2, localization: ChartWizardLocalizationService);
|
26
28
|
ngAfterViewInit(): void;
|
27
29
|
updateState(action: any, value: any): void;
|
28
30
|
formGroup: FormGroup;
|
@@ -32,6 +34,7 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
|
|
32
34
|
onRowReorder(grid: GridComponent): void;
|
33
35
|
isDisabled(grid: GridComponent): boolean;
|
34
36
|
detectChanges(): void;
|
37
|
+
messageFor(key: string): string;
|
35
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneDataTabComponent, never>;
|
36
39
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneDataTabComponent, "kendo-chartwizard-property-pane-data-tab", never, {}, {}, never, never, true, never>;
|
37
40
|
}
|