@progress/kendo-angular-chart-wizard 16.11.0-develop.1 → 16.11.0-develop.11
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
@@ -37,6 +37,9 @@ import { DropDownButtonComponent } from '@progress/kendo-angular-buttons';
|
|
37
37
|
import { ExportEvent } from './events';
|
38
38
|
import { defaultAllSeriesItem } from './common/models';
|
39
39
|
import { ChartWizardPropertyPaneFormatTabComponent } from './property-pane/format-tab.component';
|
40
|
+
import { ChartWizardCommon } from '@progress/kendo-charts';
|
41
|
+
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
42
|
+
import { ChartWizardLocalizationService } from './localization/chartwizard-localization.service';
|
40
43
|
import * as i0 from "@angular/core";
|
41
44
|
import * as i1 from "@progress/kendo-angular-l10n";
|
42
45
|
import * as i2 from "./state.service";
|
@@ -63,20 +66,7 @@ export class ChartWizardComponent {
|
|
63
66
|
/**
|
64
67
|
* @hidden
|
65
68
|
*/
|
66
|
-
this.exportDropdownItems = [
|
67
|
-
{
|
68
|
-
text: 'PDF File',
|
69
|
-
svgIcon: filePdfIcon,
|
70
|
-
},
|
71
|
-
{
|
72
|
-
text: 'SVG File',
|
73
|
-
svgIcon: fileIcon,
|
74
|
-
},
|
75
|
-
{
|
76
|
-
text: 'PNG File',
|
77
|
-
svgIcon: fileImageIcon,
|
78
|
-
},
|
79
|
-
];
|
69
|
+
this.exportDropdownItems = [];
|
80
70
|
/**
|
81
71
|
* Fires when the Chart Wizard Window is to be close.
|
82
72
|
*/
|
@@ -85,6 +75,10 @@ export class ChartWizardComponent {
|
|
85
75
|
* Fires when the Chart is about to be exported. The event is preventable.
|
86
76
|
*/
|
87
77
|
this.export = new EventEmitter();
|
78
|
+
/**
|
79
|
+
* @hidden
|
80
|
+
*/
|
81
|
+
this.messages = ChartWizardCommon.messages;
|
88
82
|
this.subscription = new Subscription();
|
89
83
|
const isValid = validatePackage(packageMetadata);
|
90
84
|
this.showLicenseWatermark = shouldShowValidationUI(isValid);
|
@@ -96,6 +90,20 @@ export class ChartWizardComponent {
|
|
96
90
|
ngAfterViewInit() {
|
97
91
|
this.subscription.add(this.localization.changes.subscribe(({ rtl }) => {
|
98
92
|
this.stateService.direction = rtl ? 'rtl' : 'ltr';
|
93
|
+
this.exportDropdownItems = [
|
94
|
+
{
|
95
|
+
text: this.messageFor('exportPDFButton'),
|
96
|
+
svgIcon: filePdfIcon,
|
97
|
+
},
|
98
|
+
{
|
99
|
+
text: this.messageFor('exportSVGButton'),
|
100
|
+
svgIcon: fileIcon,
|
101
|
+
},
|
102
|
+
{
|
103
|
+
text: this.messageFor('exportPNGButton'),
|
104
|
+
svgIcon: fileImageIcon,
|
105
|
+
},
|
106
|
+
];
|
99
107
|
}));
|
100
108
|
this.stateService.dataTab = this.dataTab;
|
101
109
|
}
|
@@ -165,16 +173,338 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
165
173
|
provide: L10N_PREFIX,
|
166
174
|
useValue: 'kendo.chartwizard',
|
167
175
|
},
|
176
|
+
ChartWizardLocalizationService,
|
177
|
+
{
|
178
|
+
provide: LocalizationService,
|
179
|
+
useExisting: ChartWizardLocalizationService
|
180
|
+
},
|
168
181
|
StateService
|
169
182
|
], viewQueries: [{ propertyName: "chart", first: true, predicate: ChartComponent, descendants: true }, { propertyName: "propertyPane", first: true, predicate: ChartWizardPropertyPaneChartTabComponent, descendants: true }, { propertyName: "dataTab", first: true, predicate: ChartWizardPropertyPaneDataTabComponent, descendants: true }], exportAs: ["kendoChartWizard"], usesOnChanges: true, ngImport: i0, template: `
|
170
183
|
<ng-container
|
171
184
|
kendoChartWizardLocalizedMessages
|
172
|
-
|
173
|
-
|
185
|
+
|
186
|
+
i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
|
187
|
+
[windowTitle]="messages.windowTitle"
|
188
|
+
|
189
|
+
i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
|
190
|
+
[exportButton]="messages.exportButton"
|
191
|
+
|
192
|
+
i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
|
193
|
+
[exportPDFButton]="messages.exportPDFButton"
|
194
|
+
|
195
|
+
i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
|
196
|
+
[exportSVGButton]="messages.exportSVGButton"
|
197
|
+
|
198
|
+
i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
|
199
|
+
[exportPNGButton]="messages.exportPNGButton"
|
200
|
+
|
201
|
+
i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
|
202
|
+
[tabChart]="messages.tabChart"
|
203
|
+
|
204
|
+
i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
|
205
|
+
[tabData]="messages.tabData"
|
206
|
+
|
207
|
+
i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
|
208
|
+
[tabFormat]="messages.tabFormat"
|
209
|
+
|
210
|
+
i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
|
211
|
+
[barChart]="messages.barChart"
|
212
|
+
|
213
|
+
i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
|
214
|
+
[barChartBar]="messages.barChartBar"
|
215
|
+
|
216
|
+
i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
|
217
|
+
[barChartStackedBar]="messages.barChartStackedBar"
|
218
|
+
|
219
|
+
i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
|
220
|
+
[barChart100StackedBar]="messages.barChart100StackedBar"
|
221
|
+
|
222
|
+
i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
|
223
|
+
[pieChart]="messages.pieChart"
|
224
|
+
|
225
|
+
i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
|
226
|
+
[pieChartPie]="messages.pieChartPie"
|
227
|
+
|
228
|
+
i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
|
229
|
+
[columnChart]="messages.columnChart"
|
230
|
+
|
231
|
+
i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
|
232
|
+
[columnChartColumn]="messages.columnChartColumn"
|
233
|
+
|
234
|
+
i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
|
235
|
+
[columnChartStackedColumn]="messages.columnChartStackedColumn"
|
236
|
+
|
237
|
+
i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
|
238
|
+
[columnChart100StackedColumn]="messages.columnChart100StackedColumn"
|
239
|
+
|
240
|
+
i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
|
241
|
+
[lineChart]="messages.lineChart"
|
242
|
+
|
243
|
+
i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
|
244
|
+
[lineChartLine]="messages.lineChartLine"
|
245
|
+
|
246
|
+
i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
|
247
|
+
[lineChartStackedLine]="messages.lineChartStackedLine"
|
248
|
+
|
249
|
+
i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
|
250
|
+
[lineChart100StackedLine]="messages.lineChart100StackedLine"
|
251
|
+
|
252
|
+
i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
|
253
|
+
[scatterChart]="messages.scatterChart"
|
254
|
+
|
255
|
+
i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
|
256
|
+
[scatterChartScatter]="messages.scatterChartScatter"
|
257
|
+
|
258
|
+
i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
|
259
|
+
[configuration]="messages.configuration"
|
260
|
+
|
261
|
+
i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
|
262
|
+
[configurationCategoryAxis]="messages.configurationCategoryAxis"
|
263
|
+
|
264
|
+
i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
|
265
|
+
[configurationXAxis]="messages.configurationXAxis"
|
266
|
+
|
267
|
+
i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
|
268
|
+
[configurationValueAxis]="messages.configurationValueAxis"
|
269
|
+
|
270
|
+
i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
|
271
|
+
[configurationSeries]="messages.configurationSeries"
|
272
|
+
|
273
|
+
i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
|
274
|
+
[configurationSeriesAdd]="messages.configurationSeriesAdd"
|
275
|
+
|
276
|
+
i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
|
277
|
+
[formatChartArea]="messages.formatChartArea"
|
278
|
+
|
279
|
+
i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
|
280
|
+
[formatChartAreaMargins]="messages.formatChartAreaMargins"
|
281
|
+
|
282
|
+
i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
|
283
|
+
[formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
|
284
|
+
|
285
|
+
i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
|
286
|
+
[formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
|
287
|
+
|
288
|
+
i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
|
289
|
+
[formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
|
290
|
+
|
291
|
+
i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
|
292
|
+
[formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
|
293
|
+
|
294
|
+
i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
|
295
|
+
[formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
|
296
|
+
|
297
|
+
i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
|
298
|
+
[formatChartAreaBackground]="messages.formatChartAreaBackground"
|
299
|
+
|
300
|
+
i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
|
301
|
+
[formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
|
302
|
+
|
303
|
+
i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
|
304
|
+
[formatTitle]="messages.formatTitle"
|
305
|
+
|
306
|
+
i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
|
307
|
+
[formatTitleApplyTo]="messages.formatTitleApplyTo"
|
308
|
+
|
309
|
+
i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
|
310
|
+
[formatTitleChartTitle]="messages.formatTitleChartTitle"
|
311
|
+
|
312
|
+
i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
|
313
|
+
[formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
|
314
|
+
|
315
|
+
i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
|
316
|
+
[formatTitleLabel]="messages.formatTitleLabel"
|
317
|
+
|
318
|
+
i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
|
319
|
+
[formatTitleFont]="messages.formatTitleFont"
|
320
|
+
|
321
|
+
i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
|
322
|
+
[formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
|
323
|
+
|
324
|
+
i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
|
325
|
+
[formatTitleSize]="messages.formatTitleSize"
|
326
|
+
|
327
|
+
i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
|
328
|
+
[formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
|
329
|
+
|
330
|
+
i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
|
331
|
+
[formatTitleColor]="messages.formatTitleColor"
|
332
|
+
|
333
|
+
i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
|
334
|
+
[formatSeries]="messages.formatSeries"
|
335
|
+
|
336
|
+
i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
|
337
|
+
[formatSeriesApplyTo]="messages.formatSeriesApplyTo"
|
338
|
+
|
339
|
+
i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
|
340
|
+
[formatSeriesAllSeries]="messages.formatSeriesAllSeries"
|
341
|
+
|
342
|
+
i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
|
343
|
+
[formatSeriesColor]="messages.formatSeriesColor"
|
344
|
+
|
345
|
+
i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
|
346
|
+
[formatSeriesShowLabels]="messages.formatSeriesShowLabels"
|
347
|
+
|
348
|
+
i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
|
349
|
+
[formatLegend]="messages.formatLegend"
|
350
|
+
|
351
|
+
i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
|
352
|
+
[formatLegendShowLegend]="messages.formatLegendShowLegend"
|
353
|
+
|
354
|
+
i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
|
355
|
+
[formatLegendFont]="messages.formatLegendFont"
|
356
|
+
|
357
|
+
i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
|
358
|
+
[formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
|
359
|
+
|
360
|
+
i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
|
361
|
+
[formatLegendSize]="messages.formatLegendSize"
|
362
|
+
|
363
|
+
i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
|
364
|
+
[formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
|
365
|
+
|
366
|
+
i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
|
367
|
+
[formatLegendColor]="messages.formatLegendColor"
|
368
|
+
|
369
|
+
i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
|
370
|
+
[formatLegendPosition]="messages.formatLegendPosition"
|
371
|
+
|
372
|
+
i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
|
373
|
+
[formatLegendPositionTop]="messages.formatLegendPositionTop"
|
374
|
+
|
375
|
+
i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
|
376
|
+
[formatLegendPositionBottom]="messages.formatLegendPositionBottom"
|
377
|
+
|
378
|
+
i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
|
379
|
+
[formatLegendPositionLeft]="messages.formatLegendPositionLeft"
|
380
|
+
|
381
|
+
i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
|
382
|
+
[formatLegendPositionRight]="messages.formatLegendPositionRight"
|
383
|
+
|
384
|
+
i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
|
385
|
+
[formatCategoryAxis]="messages.formatCategoryAxis"
|
386
|
+
|
387
|
+
i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
|
388
|
+
[formatXAxis]="messages.formatXAxis"
|
389
|
+
|
390
|
+
i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
|
391
|
+
[formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
|
392
|
+
|
393
|
+
i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
|
394
|
+
[formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
|
395
|
+
|
396
|
+
i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
|
397
|
+
[formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
|
398
|
+
|
399
|
+
i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
|
400
|
+
[formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
|
401
|
+
|
402
|
+
i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
|
403
|
+
[formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
|
404
|
+
|
405
|
+
i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
|
406
|
+
[formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
|
407
|
+
|
408
|
+
i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
|
409
|
+
[formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
|
410
|
+
|
411
|
+
i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
|
412
|
+
[formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
|
413
|
+
|
414
|
+
i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
|
415
|
+
[formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
|
416
|
+
|
417
|
+
i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
|
418
|
+
[formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
|
419
|
+
|
420
|
+
i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
|
421
|
+
[formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
|
422
|
+
|
423
|
+
i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
|
424
|
+
[formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
|
425
|
+
|
426
|
+
i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
|
427
|
+
[formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
|
428
|
+
|
429
|
+
i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
|
430
|
+
[formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
|
431
|
+
|
432
|
+
i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
|
433
|
+
[formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
|
434
|
+
|
435
|
+
i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
|
436
|
+
[formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
|
437
|
+
|
438
|
+
i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
|
439
|
+
[formatValueAxis]="messages.formatValueAxis"
|
440
|
+
|
441
|
+
i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
|
442
|
+
[formatYAxis]="messages.formatYAxis"
|
443
|
+
|
444
|
+
i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
|
445
|
+
[formatValueAxisTitle]="messages.formatValueAxisTitle"
|
446
|
+
|
447
|
+
i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
|
448
|
+
[formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
|
449
|
+
|
450
|
+
i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
|
451
|
+
[formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
|
452
|
+
|
453
|
+
i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
|
454
|
+
[formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
|
455
|
+
|
456
|
+
i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
|
457
|
+
[formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
|
458
|
+
|
459
|
+
i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
|
460
|
+
[formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
|
461
|
+
|
462
|
+
i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
|
463
|
+
[formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
|
464
|
+
|
465
|
+
i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
|
466
|
+
[formatValueAxisLabels]="messages.formatValueAxisLabels"
|
467
|
+
|
468
|
+
i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
|
469
|
+
[formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
|
470
|
+
|
471
|
+
i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
|
472
|
+
[formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
|
473
|
+
|
474
|
+
i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
|
475
|
+
[formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
|
476
|
+
|
477
|
+
i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
|
478
|
+
[formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
|
479
|
+
|
480
|
+
i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
|
481
|
+
[formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
|
482
|
+
|
483
|
+
i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
|
484
|
+
[formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
|
485
|
+
|
486
|
+
i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
|
487
|
+
[formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
|
488
|
+
|
489
|
+
i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
|
490
|
+
[formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
|
491
|
+
|
492
|
+
i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
|
493
|
+
[formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
|
494
|
+
|
495
|
+
i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
|
496
|
+
[formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
|
497
|
+
|
498
|
+
i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
|
499
|
+
[formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
|
500
|
+
|
501
|
+
i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
|
502
|
+
[formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
|
503
|
+
|
174
504
|
></ng-container>
|
175
505
|
<kendo-window
|
176
506
|
class="k-chart-wizard"
|
177
|
-
title="
|
507
|
+
[title]="messageFor('windowTitle')"
|
178
508
|
[width]="stateService.windowSize.width"
|
179
509
|
[height]="stateService.windowSize.height"
|
180
510
|
[resizable]="true"
|
@@ -190,7 +520,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
190
520
|
fillMode="flat"
|
191
521
|
(itemClick)="onExport($event)"
|
192
522
|
>
|
193
|
-
|
523
|
+
{{ messageFor('exportButton') }}
|
194
524
|
</kendo-dropdownbutton>
|
195
525
|
</div>
|
196
526
|
<div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
|
@@ -271,18 +601,18 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
271
601
|
</kendo-splitter-pane>
|
272
602
|
<kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [size]="stateService.splitterPaneSize">
|
273
603
|
<kendo-tabstrip [keepTabContent]="true">
|
274
|
-
<kendo-tabstrip-tab title="
|
604
|
+
<kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
|
275
605
|
<ng-template kendoTabContent>
|
276
606
|
<kendo-chartwizard-property-pane-chart-tab>
|
277
607
|
</kendo-chartwizard-property-pane-chart-tab>
|
278
608
|
</ng-template>
|
279
609
|
</kendo-tabstrip-tab>
|
280
|
-
<kendo-tabstrip-tab title="
|
610
|
+
<kendo-tabstrip-tab [title]="messageFor('tabData')">
|
281
611
|
<ng-template kendoTabContent>
|
282
612
|
<kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
|
283
613
|
</ng-template>
|
284
614
|
</kendo-tabstrip-tab>
|
285
|
-
<kendo-tabstrip-tab title="
|
615
|
+
<kendo-tabstrip-tab [title]="messageFor('tabFormat')">
|
286
616
|
<ng-template kendoTabContent>
|
287
617
|
<kendo-chartwizard-property-pane-format-tab>
|
288
618
|
</kendo-chartwizard-property-pane-format-tab>
|
@@ -293,7 +623,7 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
293
623
|
</kendo-splitter>
|
294
624
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
295
625
|
</kendo-window>
|
296
|
-
`, isInline: true, dependencies: [{ kind: "component", type: WindowComponent, selector: "kendo-window", inputs: ["autoFocusedElement", "title", "draggable", "resizable", "themeColor", "keepContent", "state", "minWidth", "minHeight", "width", "height", "top", "left"], outputs: ["dragStart", "dragEnd", "resizeStart", "resizeEnd", "close", "widthChange", "heightChange", "topChange", "leftChange", "stateChange"], exportAs: ["kendoWindow"] }, { kind: "component", type: SplitterComponent, selector: "kendo-splitter", inputs: ["orientation", "splitbarWidth", "resizeStep"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { kind: "component", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "separatorLabel", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { kind: "component", type: DropDownButtonComponent, selector: "kendo-dropdownbutton", inputs: ["arrowIcon", "icon", "svgIcon", "iconClass", "imageUrl", "textField", "data", "size", "rounded", "fillMode", "themeColor", "buttonAttributes"], outputs: ["itemClick", "focus", "blur"], exportAs: ["kendoDropDownButton"] }, { kind: "component", type: ChartComponent, selector: "kendo-chart", inputs: ["pannable", "renderAs", "seriesColors", "subtitle", "title", "transitions", "zoomable", "axisDefaults", "categoryAxis", "chartArea", "legend", "panes", "paneDefaults", "plotArea", "series", "seriesDefaults", "tooltip", "valueAxis", "xAxis", "yAxis", "resizeRateLimit", "popupSettings", "drilldownLevel"], outputs: ["axisLabelClick", "drag", "dragEnd", "dragStart", "legendItemHover", "legendItemLeave", "noteClick", "noteHover", "noteLeave", "paneRender", "plotAreaClick", "plotAreaHover", "plotAreaLeave", "render", "select", "selectEnd", "selectStart", "seriesClick", "drilldown", "seriesHover", "seriesOver", "seriesLeave", "zoom", "zoomEnd", "zoomStart", "legendItemClick", "drilldownLevelChange"], exportAs: ["kendoChart"] }, { kind: "component", type: TitleComponent, selector: "kendo-chart-title", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "description", "visible"] }, { kind: "component", type: SubtitleComponent, selector: "kendo-chart-subtitle", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "visible"] }, { kind: "component", type: ChartAreaComponent, selector: "kendo-chart-area", inputs: ["background", "border", "height", "margin", "opacity", "width"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: CategoryAxisComponent, selector: "kendo-chart-category-axis" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: CategoryAxisItemComponent, selector: "kendo-chart-category-axis-item", inputs: ["autoBaseUnitSteps", "axisCrossingValue", "background", "baseUnit", "baseUnitStep", "categories", "color", "justified", "line", "majorGridLines", "majorTicks", "max", "maxDateGroups", "maxDivisions", "min", "minorGridLines", "minorTicks", "name", "pane", "plotBands", "reverse", "roundToBaseUnit", "startAngle", "type", "visible", "weekStartDay", "crosshair", "labels", "notes", "select", "title", "rangeLabels"] }, { kind: "component", type: ValueAxisComponent, selector: "kendo-chart-value-axis" }, { kind: "component", type: ValueAxisItemComponent, selector: "kendo-chart-value-axis-item", inputs: ["axisCrossingValue", "background", "color", "line", "majorGridLines", "majorTicks", "majorUnit", "max", "min", "minorGridLines", "minorTicks", "minorUnit", "name", "narrowRange", "pane", "plotBands", "reverse", "type", "visible", "crosshair", "labels", "notes", "title"] }, { kind: "component", type: SeriesComponent, selector: "kendo-chart-series" }, { kind: "component", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: ["aggregate", "autoFit", "axis", "border", "categoryAxis", "categoryField", "closeField", "color", "colorField", "connectors", "currentField", "dashType", "data", "downColor", "downColorField", "drilldownField", "dynamicHeight", "dynamicSlope", "errorHighField", "errorLowField", "explodeField", "field", "fromField", "gap", "highField", "holeSize", "line", "lowField", "lowerField", "margin", "maxSize", "mean", "meanField", "median", "medianField", "minSize", "missingValues", "name", "neckRatio", "negativeColor", "negativeValues", "noteTextField", "opacity", "openField", "outliersField", "overlay", "padding", "q1Field", "q3Field", "segmentSpacing", "size", "sizeField", "spacing", "stack", "startAngle", "style", "summaryField", "target", "toField", "type", "upperField", "visible", "visibleInLegend", "visibleInLegendField", "visual", "width", "whiskers", "xAxis", "xErrorHighField", "xErrorLowField", "xField", "yAxis", "yErrorHighField", "yErrorLowField", "yField", "zIndex", "trendline", "for", "legendItem", "errorBars", "extremes", "highlight", "labels", "markers", "notes", "outliers", "tooltip"] }, { kind: "component", type: LegendComponent, selector: "kendo-chart-legend", inputs: ["align", "background", "border", "height", "labels", "margin", "offsetX", "offsetY", "orientation", "padding", "position", "reverse", "visible", "width", "markers", "spacing", "inactiveItems", "item", "title"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "closeIcon", "closeIconClass", "closeSVGIcon", "showContentArea"], outputs: ["tabSelect", "tabClose", "tabScroll"], exportAs: ["kendoTabStrip"] }, { kind: "component", type: TabStripTabComponent, selector: "kendo-tabstrip-tab", inputs: ["title", "disabled", "cssClass", "cssStyle", "selected", "closable", "closeIcon", "closeIconClass", "closeSVGIcon"], exportAs: ["kendoTabStripTab"] }, { kind: "directive", type: TabContentDirective, selector: "[kendoTabContent]" }, { kind: "component", type: ChartWizardPropertyPaneChartTabComponent, selector: "kendo-chartwizard-property-pane-chart-tab" }, { kind: "component", type: ChartWizardPropertyPaneFormatTabComponent, selector: "kendo-chartwizard-property-pane-format-tab" }, { kind: "component", type: ChartWizardPropertyPaneDataTabComponent, selector: "kendo-chartwizard-property-pane-data-tab" }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
626
|
+
`, isInline: true, dependencies: [{ kind: "component", type: WindowComponent, selector: "kendo-window", inputs: ["autoFocusedElement", "title", "draggable", "resizable", "themeColor", "keepContent", "state", "minWidth", "minHeight", "width", "height", "top", "left"], outputs: ["dragStart", "dragEnd", "resizeStart", "resizeEnd", "close", "widthChange", "heightChange", "topChange", "leftChange", "stateChange"], exportAs: ["kendoWindow"] }, { kind: "component", type: SplitterComponent, selector: "kendo-splitter", inputs: ["orientation", "splitbarWidth", "resizeStep"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { kind: "component", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "separatorLabel", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { kind: "component", type: DropDownButtonComponent, selector: "kendo-dropdownbutton", inputs: ["arrowIcon", "icon", "svgIcon", "iconClass", "imageUrl", "textField", "data", "size", "rounded", "fillMode", "themeColor", "buttonAttributes"], outputs: ["itemClick", "focus", "blur"], exportAs: ["kendoDropDownButton"] }, { kind: "component", type: ChartComponent, selector: "kendo-chart", inputs: ["pannable", "renderAs", "seriesColors", "subtitle", "title", "transitions", "zoomable", "axisDefaults", "categoryAxis", "chartArea", "legend", "panes", "paneDefaults", "plotArea", "series", "seriesDefaults", "tooltip", "valueAxis", "xAxis", "yAxis", "resizeRateLimit", "popupSettings", "drilldownLevel"], outputs: ["axisLabelClick", "drag", "dragEnd", "dragStart", "legendItemHover", "legendItemLeave", "noteClick", "noteHover", "noteLeave", "paneRender", "plotAreaClick", "plotAreaHover", "plotAreaLeave", "render", "select", "selectEnd", "selectStart", "seriesClick", "drilldown", "seriesHover", "seriesOver", "seriesLeave", "zoom", "zoomEnd", "zoomStart", "legendItemClick", "drilldownLevelChange"], exportAs: ["kendoChart"] }, { kind: "component", type: TitleComponent, selector: "kendo-chart-title", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "description", "visible"] }, { kind: "component", type: SubtitleComponent, selector: "kendo-chart-subtitle", inputs: ["align", "background", "border", "color", "font", "margin", "padding", "position", "text", "visible"] }, { kind: "component", type: ChartAreaComponent, selector: "kendo-chart-area", inputs: ["background", "border", "height", "margin", "opacity", "width"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: CategoryAxisComponent, selector: "kendo-chart-category-axis" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: CategoryAxisItemComponent, selector: "kendo-chart-category-axis-item", inputs: ["autoBaseUnitSteps", "axisCrossingValue", "background", "baseUnit", "baseUnitStep", "categories", "color", "justified", "line", "majorGridLines", "majorTicks", "max", "maxDateGroups", "maxDivisions", "min", "minorGridLines", "minorTicks", "name", "pane", "plotBands", "reverse", "roundToBaseUnit", "startAngle", "type", "visible", "weekStartDay", "crosshair", "labels", "notes", "select", "title", "rangeLabels"] }, { kind: "component", type: ValueAxisComponent, selector: "kendo-chart-value-axis" }, { kind: "component", type: ValueAxisItemComponent, selector: "kendo-chart-value-axis-item", inputs: ["axisCrossingValue", "background", "color", "line", "majorGridLines", "majorTicks", "majorUnit", "max", "min", "minorGridLines", "minorTicks", "minorUnit", "name", "narrowRange", "pane", "plotBands", "reverse", "type", "visible", "crosshair", "labels", "notes", "title"] }, { kind: "component", type: SeriesComponent, selector: "kendo-chart-series" }, { kind: "component", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: ["aggregate", "autoFit", "axis", "border", "categoryAxis", "categoryField", "closeField", "color", "colorField", "connectors", "currentField", "dashType", "data", "downColor", "downColorField", "drilldownField", "dynamicHeight", "dynamicSlope", "errorHighField", "errorLowField", "explodeField", "field", "fromField", "gap", "highField", "holeSize", "line", "lowField", "lowerField", "margin", "maxSize", "mean", "meanField", "median", "medianField", "minSize", "missingValues", "name", "neckRatio", "negativeColor", "negativeValues", "noteTextField", "opacity", "openField", "outliersField", "overlay", "padding", "q1Field", "q3Field", "segmentSpacing", "size", "sizeField", "spacing", "stack", "startAngle", "style", "summaryField", "target", "toField", "type", "upperField", "visible", "visibleInLegend", "visibleInLegendField", "visual", "width", "whiskers", "xAxis", "xErrorHighField", "xErrorLowField", "xField", "yAxis", "yErrorHighField", "yErrorLowField", "yField", "zIndex", "trendline", "for", "legendItem", "errorBars", "extremes", "highlight", "labels", "markers", "notes", "outliers", "tooltip"] }, { kind: "component", type: LegendComponent, selector: "kendo-chart-legend", inputs: ["align", "background", "border", "height", "labels", "margin", "offsetX", "offsetY", "orientation", "padding", "position", "reverse", "visible", "width", "markers", "spacing", "inactiveItems", "item", "title"] }, { kind: "component", type: TabStripComponent, selector: "kendo-tabstrip", inputs: ["height", "animate", "tabAlignment", "tabPosition", "keepTabContent", "closable", "scrollable", "closeIcon", "closeIconClass", "closeSVGIcon", "showContentArea"], outputs: ["tabSelect", "tabClose", "tabScroll"], exportAs: ["kendoTabStrip"] }, { kind: "component", type: TabStripTabComponent, selector: "kendo-tabstrip-tab", inputs: ["title", "disabled", "cssClass", "cssStyle", "selected", "closable", "closeIcon", "closeIconClass", "closeSVGIcon"], exportAs: ["kendoTabStripTab"] }, { kind: "directive", type: TabContentDirective, selector: "[kendoTabContent]" }, { kind: "component", type: ChartWizardPropertyPaneChartTabComponent, selector: "kendo-chartwizard-property-pane-chart-tab" }, { kind: "component", type: ChartWizardPropertyPaneFormatTabComponent, selector: "kendo-chartwizard-property-pane-format-tab" }, { kind: "component", type: ChartWizardPropertyPaneDataTabComponent, selector: "kendo-chartwizard-property-pane-data-tab" }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }, { kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoChartWizardLocalizedMessages]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
297
627
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardComponent, decorators: [{
|
298
628
|
type: Component,
|
299
629
|
args: [{
|
@@ -305,18 +635,340 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
305
635
|
provide: L10N_PREFIX,
|
306
636
|
useValue: 'kendo.chartwizard',
|
307
637
|
},
|
638
|
+
ChartWizardLocalizationService,
|
639
|
+
{
|
640
|
+
provide: LocalizationService,
|
641
|
+
useExisting: ChartWizardLocalizationService
|
642
|
+
},
|
308
643
|
StateService
|
309
644
|
],
|
310
645
|
selector: 'kendo-chartwizard',
|
311
646
|
template: `
|
312
647
|
<ng-container
|
313
648
|
kendoChartWizardLocalizedMessages
|
314
|
-
|
315
|
-
|
649
|
+
|
650
|
+
i18n-windowTitle="kendo.chartwizard.windowTitle|The title of the window."
|
651
|
+
[windowTitle]="messages.windowTitle"
|
652
|
+
|
653
|
+
i18n-exportButton="kendo.chartwizard.exportButton|The text of the Export DropDownButton."
|
654
|
+
[exportButton]="messages.exportButton"
|
655
|
+
|
656
|
+
i18n-exportPDFButton="kendo.chartwizard.exportPDFButton|The text of the Export DropDownButton option that represents PDF."
|
657
|
+
[exportPDFButton]="messages.exportPDFButton"
|
658
|
+
|
659
|
+
i18n-exportSVGButton="kendo.chartwizard.exportSVGButton|The text of the Export DropDownButton option that represents SVG."
|
660
|
+
[exportSVGButton]="messages.exportSVGButton"
|
661
|
+
|
662
|
+
i18n-exportPNGButton="kendo.chartwizard.exportPNGButton|The text of the Export DropDownButton option that represents PNG."
|
663
|
+
[exportPNGButton]="messages.exportPNGButton"
|
664
|
+
|
665
|
+
i18n-tabChart="kendo.chartwizard.tabChart|The text of the Chart tab of the property pane."
|
666
|
+
[tabChart]="messages.tabChart"
|
667
|
+
|
668
|
+
i18n-tabData="kendo.chartwizard.tabData|The text of the Data tab of the property pane."
|
669
|
+
[tabData]="messages.tabData"
|
670
|
+
|
671
|
+
i18n-tabFormat="kendo.chartwizard.tabFormat|The text of the Format tab of the property pane."
|
672
|
+
[tabFormat]="messages.tabFormat"
|
673
|
+
|
674
|
+
i18n-barChart="kendo.chartwizard.barChart|The text of the Chart panel that represents Bar Charts."
|
675
|
+
[barChart]="messages.barChart"
|
676
|
+
|
677
|
+
i18n-barChartBar="kendo.chartwizard.barChartBar|The text of the Bar Chart type."
|
678
|
+
[barChartBar]="messages.barChartBar"
|
679
|
+
|
680
|
+
i18n-barChartStackedBar="kendo.chartwizard.barChartStackedBar|The text of the Stacked Bar Chart type."
|
681
|
+
[barChartStackedBar]="messages.barChartStackedBar"
|
682
|
+
|
683
|
+
i18n-barChart100StackedBar="kendo.chartwizard.barChart100StackedBar|The text of the 100% Stacked Bar Chart type."
|
684
|
+
[barChart100StackedBar]="messages.barChart100StackedBar"
|
685
|
+
|
686
|
+
i18n-pieChart="kendo.chartwizard.pieChart|The text of the Chart panel that represents Pie Charts."
|
687
|
+
[pieChart]="messages.pieChart"
|
688
|
+
|
689
|
+
i18n-pieChartPie="kendo.chartwizard.pieChartPie|The text of the Pie Chart type."
|
690
|
+
[pieChartPie]="messages.pieChartPie"
|
691
|
+
|
692
|
+
i18n-columnChart="kendo.chartwizard.columnChart|The text of the Chart panel that represents Column Charts."
|
693
|
+
[columnChart]="messages.columnChart"
|
694
|
+
|
695
|
+
i18n-columnChartColumn="kendo.chartwizard.columnChartColumn|The text of the Column Chart type."
|
696
|
+
[columnChartColumn]="messages.columnChartColumn"
|
697
|
+
|
698
|
+
i18n-columnChartStackedColumn="kendo.chartwizard.columnChartStackedColumn|The text of the Stacked Column Chart type."
|
699
|
+
[columnChartStackedColumn]="messages.columnChartStackedColumn"
|
700
|
+
|
701
|
+
i18n-columnChart100StackedColumn="kendo.chartwizard.columnChart100StackedColumn|The text of the 100% Stacked Column Chart type."
|
702
|
+
[columnChart100StackedColumn]="messages.columnChart100StackedColumn"
|
703
|
+
|
704
|
+
i18n-lineChart="kendo.chartwizard.lineChart|The text of the Chart panel that represents Line Charts."
|
705
|
+
[lineChart]="messages.lineChart"
|
706
|
+
|
707
|
+
i18n-lineChartLine="kendo.chartwizard.lineChartLine|The text of the Line Chart type."
|
708
|
+
[lineChartLine]="messages.lineChartLine"
|
709
|
+
|
710
|
+
i18n-lineChartStackedLine="kendo.chartwizard.lineChartStackedLine|The text of the Stacked Line Chart type."
|
711
|
+
[lineChartStackedLine]="messages.lineChartStackedLine"
|
712
|
+
|
713
|
+
i18n-lineChart100StackedLine="kendo.chartwizard.lineChart100StackedLine|The text of the 100% Stacked Line Chart type."
|
714
|
+
[lineChart100StackedLine]="messages.lineChart100StackedLine"
|
715
|
+
|
716
|
+
i18n-scatterChart="kendo.chartwizard.scatterChart|The text of the Chart panel that represents Scatter Charts."
|
717
|
+
[scatterChart]="messages.scatterChart"
|
718
|
+
|
719
|
+
i18n-scatterChartScatter="kendo.chartwizard.scatterChartScatter|The text of the Scatter Chart type."
|
720
|
+
[scatterChartScatter]="messages.scatterChartScatter"
|
721
|
+
|
722
|
+
i18n-configuration="kendo.chartwizard.configuration|The text of the Configuration panel of the Data tab."
|
723
|
+
[configuration]="messages.configuration"
|
724
|
+
|
725
|
+
i18n-configurationCategoryAxis="kendo.chartwizard.configurationCategoryAxis|The caption of the Category Axis DropDown in the Configuration panel."
|
726
|
+
[configurationCategoryAxis]="messages.configurationCategoryAxis"
|
727
|
+
|
728
|
+
i18n-configurationXAxis="kendo.chartwizard.configurationXAxis|The caption of the X Axis DropDown in the Configuration panel when a Scatter Chart is selected."
|
729
|
+
[configurationXAxis]="messages.configurationXAxis"
|
730
|
+
|
731
|
+
i18n-configurationValueAxis="kendo.chartwizard.configurationValueAxis|The caption of the Value Axis DropDown in the Configuration panel when a Pie Chart is selected."
|
732
|
+
[configurationValueAxis]="messages.configurationValueAxis"
|
733
|
+
|
734
|
+
i18n-configurationSeries="kendo.chartwizard.configurationSeries|The text of the Series Grid in the Configuration panel when a Categorical Chart is selected."
|
735
|
+
[configurationSeries]="messages.configurationSeries"
|
736
|
+
|
737
|
+
i18n-configurationSeriesAdd="kendo.chartwizard.configurationSeriesAdd|The text of the Add Series button in the Grid of the Configuration panel."
|
738
|
+
[configurationSeriesAdd]="messages.configurationSeriesAdd"
|
739
|
+
|
740
|
+
i18n-formatChartArea="kendo.chartwizard.formatChartArea|The text of the Chart Area panel of the Format tab."
|
741
|
+
[formatChartArea]="messages.formatChartArea"
|
742
|
+
|
743
|
+
i18n-formatChartAreaMargins="kendo.chartwizard.formatChartAreaMargins|The text of the Margins settings of the Chart Area panel."
|
744
|
+
[formatChartAreaMargins]="messages.formatChartAreaMargins"
|
745
|
+
|
746
|
+
i18n-formatChartAreaMarginsAuto="kendo.chartwizard.formatChartAreaMarginsAuto|The placeholder of the Margins settings of the Chart Area panel."
|
747
|
+
[formatChartAreaMarginsAuto]="messages.formatChartAreaMarginsAuto"
|
748
|
+
|
749
|
+
i18n-formatChartAreaMarginsLeft="kendo.chartwizard.formatChartAreaMarginsLeft|The label of the Left margin setting of the Chart Area panel."
|
750
|
+
[formatChartAreaMarginsLeft]="messages.formatChartAreaMarginsLeft"
|
751
|
+
|
752
|
+
i18n-formatChartAreaMarginsRight="kendo.chartwizard.formatChartAreaMarginsRight|The label of the Right margin setting of the Chart Area panel."
|
753
|
+
[formatChartAreaMarginsRight]="messages.formatChartAreaMarginsRight"
|
754
|
+
|
755
|
+
i18n-formatChartAreaMarginsTop="kendo.chartwizard.formatChartAreaMarginsTop|The label of the Top margin setting of the Chart Area panel."
|
756
|
+
[formatChartAreaMarginsTop]="messages.formatChartAreaMarginsTop"
|
757
|
+
|
758
|
+
i18n-formatChartAreaMarginsBottom="kendo.chartwizard.formatChartAreaMarginsBottom|The label of the Bottom margin setting of the Chart Area panel."
|
759
|
+
[formatChartAreaMarginsBottom]="messages.formatChartAreaMarginsBottom"
|
760
|
+
|
761
|
+
i18n-formatChartAreaBackground="kendo.chartwizard.formatChartAreaBackground|The text of the Background settings of the Chart Area panel."
|
762
|
+
[formatChartAreaBackground]="messages.formatChartAreaBackground"
|
763
|
+
|
764
|
+
i18n-formatChartAreaBackgroundColor="kendo.chartwizard.formatChartAreaBackgroundColor|The label of the Color background setting of the Chart Area panel."
|
765
|
+
[formatChartAreaBackgroundColor]="messages.formatChartAreaBackgroundColor"
|
766
|
+
|
767
|
+
i18n-formatTitle="kendo.chartwizard.formatTitle|The text of the Title panel of the Format tab."
|
768
|
+
[formatTitle]="messages.formatTitle"
|
769
|
+
|
770
|
+
i18n-formatTitleApplyTo="kendo.chartwizard.formatTitleApplyTo|The label of the Apply to DropDown of the Title panel."
|
771
|
+
[formatTitleApplyTo]="messages.formatTitleApplyTo"
|
772
|
+
|
773
|
+
i18n-formatTitleChartTitle="kendo.chartwizard.formatTitleChartTitle|The text of the Chart Title option of the Apply to DropDown in the Title panel."
|
774
|
+
[formatTitleChartTitle]="messages.formatTitleChartTitle"
|
775
|
+
|
776
|
+
i18n-formatTitleChartSubtitle="kendo.chartwizard.formatTitleChartSubtitle|The text of the Chart Subtitle option of the Apply to DropDown in the Title panel."
|
777
|
+
[formatTitleChartSubtitle]="messages.formatTitleChartSubtitle"
|
778
|
+
|
779
|
+
i18n-formatTitleLabel="kendo.chartwizard.formatTitleLabel|The label of the Title input of the Title panel."
|
780
|
+
[formatTitleLabel]="messages.formatTitleLabel"
|
781
|
+
|
782
|
+
i18n-formatTitleFont="kendo.chartwizard.formatTitleFont|The label of the Font setting of the Title panel."
|
783
|
+
[formatTitleFont]="messages.formatTitleFont"
|
784
|
+
|
785
|
+
i18n-formatTitleFontPlaceholder="kendo.chartwizard.formatTitleFontPlaceholder|The placeholder of the Font setting of the Title panel."
|
786
|
+
[formatTitleFontPlaceholder]="messages.formatTitleFontPlaceholder"
|
787
|
+
|
788
|
+
i18n-formatTitleSize="kendo.chartwizard.formatTitleSize|The label of the Size setting of the Title panel."
|
789
|
+
[formatTitleSize]="messages.formatTitleSize"
|
790
|
+
|
791
|
+
i18n-formatTitleSizePlaceholder="kendo.chartwizard.formatTitleSizePlaceholder|The placeholder of the Size setting of the Title panel."
|
792
|
+
[formatTitleSizePlaceholder]="messages.formatTitleSizePlaceholder"
|
793
|
+
|
794
|
+
i18n-formatTitleColor="kendo.chartwizard.formatTitleColor|The label of the Color setting of the Title panel."
|
795
|
+
[formatTitleColor]="messages.formatTitleColor"
|
796
|
+
|
797
|
+
i18n-formatSeries="kendo.chartwizard.formatSeries|The text of the Series panel of the Format tab."
|
798
|
+
[formatSeries]="messages.formatSeries"
|
799
|
+
|
800
|
+
i18n-formatSeriesApplyTo="kendo.chartwizard.formatSeriesApplyTo|The label of the Apply to DropDown of the Series panel."
|
801
|
+
[formatSeriesApplyTo]="messages.formatSeriesApplyTo"
|
802
|
+
|
803
|
+
i18n-formatSeriesAllSeries="kendo.chartwizard.formatSeriesAllSeries|The text of the All Series option of the Apply to DropDown in the Series panel."
|
804
|
+
[formatSeriesAllSeries]="messages.formatSeriesAllSeries"
|
805
|
+
|
806
|
+
i18n-formatSeriesColor="kendo.chartwizard.formatSeriesColor|The label of the Color setting of the Series panel."
|
807
|
+
[formatSeriesColor]="messages.formatSeriesColor"
|
808
|
+
|
809
|
+
i18n-formatSeriesShowLabels="kendo.chartwizard.formatSeriesShowLabels|The label of the Show Labels checkbox of the Series panel."
|
810
|
+
[formatSeriesShowLabels]="messages.formatSeriesShowLabels"
|
811
|
+
|
812
|
+
i18n-formatLegend="kendo.chartwizard.formatLegend|The text of the Legend panel of the Format tab."
|
813
|
+
[formatLegend]="messages.formatLegend"
|
814
|
+
|
815
|
+
i18n-formatLegendShowLegend="kendo.chartwizard.formatLegendShowLegend|The label of the Show Legend switch of the Legend panel."
|
816
|
+
[formatLegendShowLegend]="messages.formatLegendShowLegend"
|
817
|
+
|
818
|
+
i18n-formatLegendFont="kendo.chartwizard.formatLegendFont|The label of the Font setting of the Legend panel."
|
819
|
+
[formatLegendFont]="messages.formatLegendFont"
|
820
|
+
|
821
|
+
i18n-formatLegendFontPlaceholder="kendo.chartwizard.formatLegendFontPlaceholder|The placeholder of the Font setting of the Legend panel."
|
822
|
+
[formatLegendFontPlaceholder]="messages.formatLegendFontPlaceholder"
|
823
|
+
|
824
|
+
i18n-formatLegendSize="kendo.chartwizard.formatLegendSize|The label of the Size setting of the Legend panel."
|
825
|
+
[formatLegendSize]="messages.formatLegendSize"
|
826
|
+
|
827
|
+
i18n-formatLegendSizePlaceholder="kendo.chartwizard.formatLegendSizePlaceholder|The placeholder of the Size setting of the Legend panel."
|
828
|
+
[formatLegendSizePlaceholder]="messages.formatLegendSizePlaceholder"
|
829
|
+
|
830
|
+
i18n-formatLegendColor="kendo.chartwizard.formatLegendColor|The label of the Color setting of the Legend panel."
|
831
|
+
[formatLegendColor]="messages.formatLegendColor"
|
832
|
+
|
833
|
+
i18n-formatLegendPosition="kendo.chartwizard.formatLegendPosition|The label of the Posiiton DropDown of the Legend panel."
|
834
|
+
[formatLegendPosition]="messages.formatLegendPosition"
|
835
|
+
|
836
|
+
i18n-formatLegendPositionTop="kendo.chartwizard.formatLegendPositionTop|The text of the Top option of the Position DropDown of the Legend panel."
|
837
|
+
[formatLegendPositionTop]="messages.formatLegendPositionTop"
|
838
|
+
|
839
|
+
i18n-formatLegendPositionBottom="kendo.chartwizard.formatLegendPositionBottom|The text of the Bottom option of the Position DropDown of the Legend panel."
|
840
|
+
[formatLegendPositionBottom]="messages.formatLegendPositionBottom"
|
841
|
+
|
842
|
+
i18n-formatLegendPositionLeft="kendo.chartwizard.formatLegendPositionLeft|The text of the Left option of the Position DropDown of the Legend panel."
|
843
|
+
[formatLegendPositionLeft]="messages.formatLegendPositionLeft"
|
844
|
+
|
845
|
+
i18n-formatLegendPositionRight="kendo.chartwizard.formatLegendPositionRight|The text of the Right option of the Position DropDown of the Legend panel."
|
846
|
+
[formatLegendPositionRight]="messages.formatLegendPositionRight"
|
847
|
+
|
848
|
+
i18n-formatCategoryAxis="kendo.chartwizard.formatCategoryAxis|The text of the Category Axis panel of the Format tab."
|
849
|
+
[formatCategoryAxis]="messages.formatCategoryAxis"
|
850
|
+
|
851
|
+
i18n-formatXAxis="kendo.chartwizard.formatXAxis|The text of the X Axis panel of the Format tab when a Scatter Chart is selected."
|
852
|
+
[formatXAxis]="messages.formatXAxis"
|
853
|
+
|
854
|
+
i18n-formatCategoryAxisTitle="kendo.chartwizard.formatCategoryAxisTitle|The label of the Title settings of the Category Axis panel."
|
855
|
+
[formatCategoryAxisTitle]="messages.formatCategoryAxisTitle"
|
856
|
+
|
857
|
+
i18n-formatCategoryAxisTitlePlaceholder="kendo.chartwizard.formatCategoryAxisTitlePlaceholder|The placeholder of the Title input of the Category Axis panel."
|
858
|
+
[formatCategoryAxisTitlePlaceholder]="messages.formatCategoryAxisTitlePlaceholder"
|
859
|
+
|
860
|
+
i18n-formatCategoryAxisTitleFont="kendo.chartwizard.formatCategoryAxisTitleFont|The label of the Font settings of the Title in the Category Axis panel."
|
861
|
+
[formatCategoryAxisTitleFont]="messages.formatCategoryAxisTitleFont"
|
862
|
+
|
863
|
+
i18n-formatCategoryAxisTitleFontPlaceholder="kendo.chartwizard.formatCategoryAxisTitleFontPlaceholder|The placeholder of the Font settings of the Title in the Category Axis panel."
|
864
|
+
[formatCategoryAxisTitleFontPlaceholder]="messages.formatCategoryAxisTitleFontPlaceholder"
|
865
|
+
|
866
|
+
i18n-formatCategoryAxisTitleSize="kendo.chartwizard.formatCategoryAxisTitleSize|The label of the Size settings of the Title in the Category Axis panel."
|
867
|
+
[formatCategoryAxisTitleSize]="messages.formatCategoryAxisTitleSize"
|
868
|
+
|
869
|
+
i18n-formatCategoryAxisTitleSizePlaceholder="kendo.chartwizard.formatCategoryAxisTitleSizePlaceholder|The placeholder of the Size settings of the Title in the Category Axis panel."
|
870
|
+
[formatCategoryAxisTitleSizePlaceholder]="messages.formatCategoryAxisTitleSizePlaceholder"
|
871
|
+
|
872
|
+
i18n-formatCategoryAxisTitleColor="kendo.chartwizard.formatCategoryAxisTitleColor|The label of the Color settings of the Title in the Category Axis panel."
|
873
|
+
[formatCategoryAxisTitleColor]="messages.formatCategoryAxisTitleColor"
|
874
|
+
|
875
|
+
i18n-formatCategoryAxisLabels="kendo.chartwizard.formatCategoryAxisLabels|The label of the Labels settings of the Category Axis panel."
|
876
|
+
[formatCategoryAxisLabels]="messages.formatCategoryAxisLabels"
|
877
|
+
|
878
|
+
i18n-formatCategoryAxisLabelsFont="kendo.chartwizard.formatCategoryAxisLabelsFont|The label of the Font settings of the Labels in the Category Axis panel."
|
879
|
+
[formatCategoryAxisLabelsFont]="messages.formatCategoryAxisLabelsFont"
|
880
|
+
|
881
|
+
i18n-formatCategoryAxisLabelsFontPlaceholder="kendo.chartwizard.formatCategoryAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Category Axis panel."
|
882
|
+
[formatCategoryAxisLabelsFontPlaceholder]="messages.formatCategoryAxisLabelsFontPlaceholder"
|
883
|
+
|
884
|
+
i18n-formatCategoryAxisLabelsSize="kendo.chartwizard.formatCategoryAxisLabelsSize|The label of the Size settings of the Labels in the Category Axis panel."
|
885
|
+
[formatCategoryAxisLabelsSize]="messages.formatCategoryAxisLabelsSize"
|
886
|
+
|
887
|
+
i18n-formatCategoryAxisLabelsSizePlaceholder="kendo.chartwizard.formatCategoryAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Category Axis panel."
|
888
|
+
[formatCategoryAxisLabelsSizePlaceholder]="messages.formatCategoryAxisLabelsSizePlaceholder"
|
889
|
+
|
890
|
+
i18n-formatCategoryAxisLabelsColor="kendo.chartwizard.formatCategoryAxisLabelsColor|The label of the Color settings of the Labels in the Category Axis panel."
|
891
|
+
[formatCategoryAxisLabelsColor]="messages.formatCategoryAxisLabelsColor"
|
892
|
+
|
893
|
+
i18n-formatCategoryAxisLabelsRotation="kendo.chartwizard.formatCategoryAxisLabelsRotation|The label of the Rotation settings of the Labels in the Category Axis panel."
|
894
|
+
[formatCategoryAxisLabelsRotation]="messages.formatCategoryAxisLabelsRotation"
|
895
|
+
|
896
|
+
i18n-formatCategoryAxisLabelsRotationAuto="kendo.chartwizard.formatCategoryAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Category Axis panel."
|
897
|
+
[formatCategoryAxisLabelsRotationAuto]="messages.formatCategoryAxisLabelsRotationAuto"
|
898
|
+
|
899
|
+
i18n-formatCategoryAxisLabelsReverseOrder="kendo.chartwizard.formatCategoryAxisLabelsReverseOrder|The label of the Reverse Order checkbox of the Labels in the Category Axis panel."
|
900
|
+
[formatCategoryAxisLabelsReverseOrder]="messages.formatCategoryAxisLabelsReverseOrder"
|
901
|
+
|
902
|
+
i18n-formatValueAxis="kendo.chartwizard.formatValueAxis|The text of the Value Axis panel of the Format tab."
|
903
|
+
[formatValueAxis]="messages.formatValueAxis"
|
904
|
+
|
905
|
+
i18n-formatYAxis="kendo.chartwizard.formatYAxis|The text of the Y Axis panel of the Format tab."
|
906
|
+
[formatYAxis]="messages.formatYAxis"
|
907
|
+
|
908
|
+
i18n-formatValueAxisTitle="kendo.chartwizard.formatValueAxisTitle|The label of the Title settings of the Value Axis panel."
|
909
|
+
[formatValueAxisTitle]="messages.formatValueAxisTitle"
|
910
|
+
|
911
|
+
i18n-formatValueAxisTitlePlaceholder="kendo.chartwizard.formatValueAxisTitlePlaceholder|The placeholder of the Title settings of the Value Axis panel."
|
912
|
+
[formatValueAxisTitlePlaceholder]="messages.formatValueAxisTitlePlaceholder"
|
913
|
+
|
914
|
+
i18n-formatValueAxisTitleFont="kendo.chartwizard.formatValueAxisTitleFont|The label of the Font settings of the Value Axis panel."
|
915
|
+
[formatValueAxisTitleFont]="messages.formatValueAxisTitleFont"
|
916
|
+
|
917
|
+
i18n-formatValueAxisTitleFontPlaceholder="kendo.chartwizard.formatValueAxisTitleFontPlaceholder|The placeholder of the Font settings of the Value Axis panel."
|
918
|
+
[formatYAxis]="messages.formatValueAxisTitleFontPlaceholder"
|
919
|
+
|
920
|
+
i18n-formatValueAxisTitleSize="kendo.chartwizard.formatValueAxisTitleSize|The label of the Size settings of the Value Axis panel."
|
921
|
+
[formatValueAxisTitleSize]="messages.formatValueAxisTitleSize"
|
922
|
+
|
923
|
+
i18n-formatValueAxisTitleSizePlaceholder="kendo.chartwizard.formatValueAxisTitleSizePlaceholder|The placeholder of the Size settings of the Value Axis panel."
|
924
|
+
[formatValueAxisTitleSizePlaceholder]="messages.formatValueAxisTitleSizePlaceholder"
|
925
|
+
|
926
|
+
i18n-formatValueAxisTitleColor="kendo.chartwizard.formatValueAxisTitleColor|The label of the Color settings of the Value Axis panel."
|
927
|
+
[formatValueAxisTitleColor]="messages.formatValueAxisTitleColor"
|
928
|
+
|
929
|
+
i18n-formatValueAxisLabels="kendo.chartwizard.formatValueAxisLabels|The label of the Labels settings of the Value Axis panel."
|
930
|
+
[formatValueAxisLabels]="messages.formatValueAxisLabels"
|
931
|
+
|
932
|
+
i18n-formatValueAxisLabelsFormat="kendo.chartwizard.formatValueAxisLabelsFormat|The label of the Format DropDown of the Labels settings of the Value Axis panel."
|
933
|
+
[formatValueAxisLabelsFormat]="messages.formatValueAxisLabelsFormat"
|
934
|
+
|
935
|
+
i18n-formatValueAxisLabelsFormatText="kendo.chartwizard.formatValueAxisLabelsFormatText|The Text option of the Format DropDown of the Labels settings of the Value Axis panel."
|
936
|
+
[formatValueAxisLabelsFormatText]="messages.formatValueAxisLabelsFormatText"
|
937
|
+
|
938
|
+
i18n-formatValueAxisLabelsFormatNumber="kendo.chartwizard.formatValueAxisLabelsFormatNumber|The Number option of the Format DropDown of the Labels settings of the Value Axis panel."
|
939
|
+
[formatValueAxisLabelsFormatNumber]="messages.formatValueAxisLabelsFormatNumber"
|
940
|
+
|
941
|
+
i18n-formatValueAxisLabelsFormatCurrency="kendo.chartwizard.formatValueAxisLabelsFormatCurrency|The Currency option of the Format DropDown of the Labels settings of the Value Axis panel."
|
942
|
+
[formatValueAxisLabelsFormatCurrency]="messages.formatValueAxisLabelsFormatCurrency"
|
943
|
+
|
944
|
+
i18n-formatValueAxisLabelsFormatPercent="kendo.chartwizard.formatValueAxisLabelsFormatPercent|The Percent option of the Format DropDown of the Labels settings of the Value Axis panel."
|
945
|
+
[formatValueAxisLabelsFormatPercent]="messages.formatValueAxisLabelsFormatPercent"
|
946
|
+
|
947
|
+
i18n-formatValueAxisLabelsFont="kendo.chartwizard.formatValueAxisLabelsFont|The label of the Font settings of the Labels in the Value Axis panel."
|
948
|
+
[formatValueAxisLabelsFont]="messages.formatValueAxisLabelsFont"
|
949
|
+
|
950
|
+
i18n-formatValueAxisLabelsFontPlaceholder="kendo.chartwizard.formatValueAxisLabelsFontPlaceholder|The placeholder of the Font settings of the Labels in the Value Axis panel."
|
951
|
+
[formatValueAxisLabelsFontPlaceholder]="messages.formatValueAxisLabelsFontPlaceholder"
|
952
|
+
|
953
|
+
i18n-formatValueAxisLabelsSize="kendo.chartwizard.formatValueAxisLabelsSize|The label of the Size settings of the Labels in the Value Axis panel."
|
954
|
+
[formatValueAxisLabelsSize]="messages.formatValueAxisLabelsSize"
|
955
|
+
|
956
|
+
i18n-formatValueAxisLabelsSizePlaceholder="kendo.chartwizard.formatValueAxisLabelsSizePlaceholder|The placeholder of the Size settings of the Labels in the Value Axis panel."
|
957
|
+
[formatValueAxisLabelsSizePlaceholder]="messages.formatValueAxisLabelsSizePlaceholder"
|
958
|
+
|
959
|
+
i18n-formatValueAxisLabelsColor="kendo.chartwizard.formatValueAxisLabelsColor|The label of the Color settings of the Labels in the Value Axis panel."
|
960
|
+
[formatValueAxisLabelsColor]="messages.formatValueAxisLabelsColor"
|
961
|
+
|
962
|
+
i18n-formatValueAxisLabelsRotation="kendo.chartwizard.formatValueAxisLabelsRotation|The label of the Rotation settings of the Labels in the Value Axis panel."
|
963
|
+
[formatValueAxisLabelsRotation]="messages.formatValueAxisLabelsRotation"
|
964
|
+
|
965
|
+
i18n-formatValueAxisLabelsRotationAuto="kendo.chartwizard.formatValueAxisLabelsRotationAuto|The Auto option of the Rotation settings of the Labels in the Value Axis panel."
|
966
|
+
[formatValueAxisLabelsRotationAuto]="messages.formatValueAxisLabelsRotationAuto"
|
967
|
+
|
316
968
|
></ng-container>
|
317
969
|
<kendo-window
|
318
970
|
class="k-chart-wizard"
|
319
|
-
title="
|
971
|
+
[title]="messageFor('windowTitle')"
|
320
972
|
[width]="stateService.windowSize.width"
|
321
973
|
[height]="stateService.windowSize.height"
|
322
974
|
[resizable]="true"
|
@@ -332,7 +984,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
332
984
|
fillMode="flat"
|
333
985
|
(itemClick)="onExport($event)"
|
334
986
|
>
|
335
|
-
|
987
|
+
{{ messageFor('exportButton') }}
|
336
988
|
</kendo-dropdownbutton>
|
337
989
|
</div>
|
338
990
|
<div class="k-preview-pane-content" [style.height]="'calc(100% - 50px)'">
|
@@ -413,18 +1065,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
413
1065
|
</kendo-splitter-pane>
|
414
1066
|
<kendo-splitter-pane class="k-chart-wizard-property-pane" [collapsible]="true" [size]="stateService.splitterPaneSize">
|
415
1067
|
<kendo-tabstrip [keepTabContent]="true">
|
416
|
-
<kendo-tabstrip-tab title="
|
1068
|
+
<kendo-tabstrip-tab [title]="messageFor('tabChart')" [selected]="true">
|
417
1069
|
<ng-template kendoTabContent>
|
418
1070
|
<kendo-chartwizard-property-pane-chart-tab>
|
419
1071
|
</kendo-chartwizard-property-pane-chart-tab>
|
420
1072
|
</ng-template>
|
421
1073
|
</kendo-tabstrip-tab>
|
422
|
-
<kendo-tabstrip-tab title="
|
1074
|
+
<kendo-tabstrip-tab [title]="messageFor('tabData')">
|
423
1075
|
<ng-template kendoTabContent>
|
424
1076
|
<kendo-chartwizard-property-pane-data-tab> </kendo-chartwizard-property-pane-data-tab>
|
425
1077
|
</ng-template>
|
426
1078
|
</kendo-tabstrip-tab>
|
427
|
-
<kendo-tabstrip-tab title="
|
1079
|
+
<kendo-tabstrip-tab [title]="messageFor('tabFormat')">
|
428
1080
|
<ng-template kendoTabContent>
|
429
1081
|
<kendo-chartwizard-property-pane-format-tab>
|
430
1082
|
</kendo-chartwizard-property-pane-format-tab>
|
@@ -465,7 +1117,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
465
1117
|
ChartWizardPropertyPaneChartTabComponent,
|
466
1118
|
ChartWizardPropertyPaneFormatTabComponent,
|
467
1119
|
ChartWizardPropertyPaneDataTabComponent,
|
468
|
-
WatermarkOverlayComponent
|
1120
|
+
WatermarkOverlayComponent,
|
1121
|
+
LocalizedMessagesDirective
|
469
1122
|
]
|
470
1123
|
}]
|
471
1124
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i2.StateService }]; }, propDecorators: { data: [{
|