@progress/kendo-react-chart-wizard 8.3.0-develop.9 → 8.3.0

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.
Files changed (60) hide show
  1. package/ChartWizard.js +1 -1
  2. package/ChartWizard.mjs +88 -942
  3. package/components/ChartComponent.js +8 -0
  4. package/components/ChartComponent.mjs +69 -0
  5. package/components/FormField.js +8 -0
  6. package/components/FormField.mjs +16 -0
  7. package/{common/get-wizard-data-from-data-rows.js → components/FormFieldSet.js} +1 -1
  8. package/{common/get-wizard-data-from-data-rows.mjs → components/FormFieldSet.mjs} +3 -14
  9. package/components/SeriesGrid.js +8 -0
  10. package/components/SeriesGrid.mjs +89 -0
  11. package/components/SeriesTypeButton.js +8 -0
  12. package/components/SeriesTypeButton.mjs +30 -0
  13. package/components/SeriesTypesWrap.js +8 -0
  14. package/components/SeriesTypesWrap.mjs +14 -0
  15. package/components/panels/BarChartPanel.js +8 -0
  16. package/components/panels/BarChartPanel.mjs +71 -0
  17. package/components/panels/CategoryAxisPanel.js +8 -0
  18. package/components/panels/CategoryAxisPanel.mjs +315 -0
  19. package/components/panels/ChartAreaPanel.js +8 -0
  20. package/components/panels/ChartAreaPanel.mjs +200 -0
  21. package/components/panels/ColumnChartPanel.js +8 -0
  22. package/components/panels/ColumnChartPanel.mjs +77 -0
  23. package/components/panels/ConfigurationPanel.js +8 -0
  24. package/components/panels/ConfigurationPanel.mjs +102 -0
  25. package/components/panels/LegendPanel.js +8 -0
  26. package/components/panels/LegendPanel.mjs +190 -0
  27. package/components/panels/LineChartPanel.js +8 -0
  28. package/components/panels/LineChartPanel.mjs +74 -0
  29. package/components/panels/PieChartPanel.js +8 -0
  30. package/components/panels/PieChartPanel.mjs +47 -0
  31. package/components/panels/ScatterChartPanel.js +8 -0
  32. package/components/panels/ScatterChartPanel.mjs +47 -0
  33. package/components/panels/SeriesPanel.js +8 -0
  34. package/components/panels/SeriesPanel.mjs +110 -0
  35. package/components/panels/TitlePanel.js +8 -0
  36. package/components/panels/TitlePanel.mjs +172 -0
  37. package/components/panels/ValueAxisPanel.js +8 -0
  38. package/components/panels/ValueAxisPanel.mjs +332 -0
  39. package/dist/cdn/js/kendo-react-chart-wizard.js +1 -1
  40. package/grid-integration/get-wizard-data-from-grid-selection.js +1 -1
  41. package/grid-integration/get-wizard-data-from-grid-selection.mjs +4 -4
  42. package/index.d.mts +15 -194
  43. package/index.d.ts +15 -194
  44. package/index.js +1 -1
  45. package/index.mjs +8 -18
  46. package/messages.js +1 -1
  47. package/messages.mjs +109 -215
  48. package/package.json +15 -15
  49. package/types/export.js +8 -0
  50. package/types/export.mjs +39 -0
  51. package/utils.js +8 -0
  52. package/utils.mjs +81 -0
  53. package/SeriesGrid.js +0 -8
  54. package/SeriesGrid.mjs +0 -85
  55. package/chart-wizard-state.js +0 -8
  56. package/chart-wizard-state.mjs +0 -360
  57. package/export.js +0 -8
  58. package/export.mjs +0 -70
  59. /package/{SeriesGridCells.js → components/SeriesGridCells.js} +0 -0
  60. /package/{SeriesGridCells.mjs → components/SeriesGridCells.mjs} +0 -0
package/index.d.ts CHANGED
@@ -6,100 +6,28 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { Chart } from '@progress/kendo-react-charts';
9
- import { ChartAreaProps } from '@progress/kendo-react-charts';
10
- import { ChartCategoryAxisItemProps } from '@progress/kendo-react-charts';
11
- import { ChartLegendProps } from '@progress/kendo-react-charts';
12
- import { ChartSeriesItemProps } from '@progress/kendo-react-charts';
13
- import { ChartSubtitleProps } from '@progress/kendo-react-charts';
14
- import { ChartTitleProps } from '@progress/kendo-react-charts';
15
- import { ChartValueAxisItemProps } from '@progress/kendo-react-charts';
16
- import { ChartXAxisItemProps } from '@progress/kendo-react-charts';
17
- import { ChartYAxisItemProps } from '@progress/kendo-react-charts';
9
+ import { ChartWizardDataCell } from '@progress/kendo-charts';
10
+ import { ChartWizardDataRow } from '@progress/kendo-charts';
11
+ import { ChartWizardDefaultState } from '@progress/kendo-charts';
12
+ import { ChartWizardState } from '@progress/kendo-charts';
13
+ import { DataColumn } from '@progress/kendo-charts';
14
+ import { DataRow } from '@progress/kendo-charts';
18
15
  import { GridHandle } from '@progress/kendo-react-grid';
19
16
  import { ImageExportOptions } from '@progress/kendo-drawing';
20
17
  import { PDFOptions } from '@progress/kendo-drawing/pdf';
21
18
  import * as React_2 from 'react';
22
- import { SeriesStack } from '@progress/kendo-react-charts';
23
- import { SeriesType } from '@progress/kendo-react-charts';
24
-
25
- /**
26
- * @hidden
27
- */
28
- export declare enum ActionTypes {
29
- seriesType = 0,
30
- stacked = 1,
31
- categoryAxisX = 2,
32
- valueAxisY = 3,
33
- seriesChange = 4,
34
- areaMarginLeft = 5,
35
- areaMarginRight = 6,
36
- areaMarginTop = 7,
37
- areaMarginBottom = 8,
38
- areaBackground = 9,
39
- titleText = 10,
40
- titleFontName = 11,
41
- titleFontSize = 12,
42
- titleColor = 13,
43
- subtitleText = 14,
44
- subtitleFontName = 15,
45
- subtitleFontSize = 16,
46
- subtitleColor = 17,
47
- seriesColor = 18,
48
- seriesLabel = 19,
49
- legendVisible = 20,
50
- legendFontName = 21,
51
- legendFontSize = 22,
52
- legendColor = 23,
53
- legendPosition = 24,
54
- categoryAxisTitleText = 25,
55
- categoryAxisTitleFontName = 26,
56
- categoryAxisTitleFontSize = 27,
57
- categoryAxisTitleColor = 28,
58
- categoryAxisLabelsFontName = 29,
59
- categoryAxisLabelsFontSize = 30,
60
- categoryAxisLabelsColor = 31,
61
- categoryAxisLabelsRotation = 32,
62
- categoryAxisReverseOrder = 33,
63
- valueAxisTitleText = 34,
64
- valueAxisTitleFontName = 35,
65
- valueAxisTitleFontSize = 36,
66
- valueAxisTitleColor = 37,
67
- valueAxisLabelsFormat = 38,
68
- valueAxisLabelsFontName = 39,
69
- valueAxisLabelsFontSize = 40,
70
- valueAxisLabelsColor = 41,
71
- valueAxisLabelsRotation = 42
72
- }
19
+ import { WindowProps } from '@progress/kendo-react-dialogs';
73
20
 
74
21
  /**
75
22
  * The KendoReact ChartWizard component.
76
23
  */
77
24
  export declare const ChartWizard: React_2.ForwardRefExoticComponent<ChartWizardProps & React_2.RefAttributes<ChartWizardHandle | null>>;
78
25
 
79
- /**
80
- * Describes a single data cell for the Chart Wizard.
81
- */
82
- export declare interface ChartWizardDataCell {
83
- /**
84
- * The field name of the data cell.
85
- */
86
- field: string;
87
- /**
88
- * The value of the data cell.
89
- */
90
- value: any;
91
- }
26
+ export { ChartWizardDataCell }
92
27
 
93
- /**
94
- * Describes a data row for the Chart Wizard.
95
- */
96
- export declare type ChartWizardDataRow = ChartWizardDataCell[];
28
+ export { ChartWizardDataRow }
97
29
 
98
- /**
99
- * The default state of the ChartWizard component.
100
- */
101
- export declare interface ChartWizardDefaultState extends Pick<ChartWizardState, 'stack' | 'seriesType'> {
102
- }
30
+ export { ChartWizardDefaultState }
103
31
 
104
32
  /**
105
33
  * Represents the `ref` object of the `ChartWizard` component.
@@ -141,68 +69,15 @@ export declare interface ChartWizardProps {
141
69
  * The default state of the ChartWizard component.
142
70
  */
143
71
  defaultState?: ChartWizardDefaultState;
144
- }
145
-
146
- /**
147
- * @hidden
148
- */
149
- export declare interface ChartWizardState {
150
- title?: ChartTitleProps;
151
- subtitle?: ChartSubtitleProps;
152
- area: ChartAreaProps;
153
- categoryAxis: ChartCategoryAxisItemProps[];
154
- valueAxis: ChartValueAxisItemProps[];
155
- series: SeriesItem[];
156
- initialSeries: SeriesItem[];
157
- xAxis?: ChartXAxisItemProps[];
158
- yAxis?: ChartYAxisItemProps[];
159
- legend?: ChartLegendProps;
160
- columns: string[];
161
- data: ChartWizardDataRow[];
162
72
  /**
163
- * The series type of the chart.
164
- *
165
- * The supported series types are:
166
- * - `'column'`
167
- * - `'bar'`
168
- * - `'line'`
169
- * - `'pie'`
170
- * - `'scatter'`
73
+ * The component that will be used to render the ChartWizard window.
171
74
  */
172
- seriesType?: SeriesType;
173
- categoryField?: string;
174
- valueField?: string;
175
- /**
176
- * The stack configuration of the series.
177
- */
178
- stack?: SeriesStack | false;
75
+ window?: React.ComponentType<WindowProps>;
179
76
  }
180
77
 
181
- /**
182
- * @hidden
183
- */
184
- export declare const createInitialState: (data: ChartWizardDataRow[], seriesType: SeriesType, defaultState?: ChartWizardDefaultState) => ChartWizardState;
185
-
186
- /**
187
- * @hidden
188
- */
189
- export declare const createState: (data: any[], seriesType: SeriesType) => ChartWizardState;
190
-
191
- /**
192
- * Represents a data column from a grid component or similar.
193
- */
194
- export declare interface DataColumn {
195
- field: string;
196
- title: string;
197
- }
78
+ export { DataColumn }
198
79
 
199
- /**
200
- * Represents a data row from a grid component or similar.
201
- */
202
- export declare interface DataRow {
203
- dataItem: any;
204
- dataColumns: DataColumn[];
205
- }
80
+ export { DataRow }
206
81
 
207
82
  /**
208
83
  * Arguments for the `export` event on the Chart Wizard.
@@ -228,25 +103,6 @@ export declare interface ExportOptions {
228
103
  image?: ImageExportOptions;
229
104
  }
230
105
 
231
- /**
232
- * @hidden
233
- */
234
- export declare const fontNames: {
235
- text: string;
236
- value: string;
237
- style: {
238
- fontFamily: string;
239
- };
240
- }[];
241
-
242
- /**
243
- * @hidden
244
- */
245
- export declare const fontSizes: {
246
- text: string;
247
- value: string;
248
- }[];
249
-
250
106
  /**
251
107
  * Maps the Grid selectedState to a more general DataRows type to be displayed in the Chart Wizard.
252
108
  *
@@ -263,12 +119,7 @@ export declare function getGridSelectedRows(args: {
263
119
  dataItemKey: string;
264
120
  }): DataRow[];
265
121
 
266
- /**
267
- * Maps data rows to the Chart Wizard data format.
268
- *
269
- * @returns collection that can be used as Chart Wizard.
270
- */
271
- export declare function getWizardDataFromDataRows(dataRows: DataRow[]): ChartWizardDataRow[];
122
+ export declare const getWizardDataFromDataRows: (dataRows: DataRow[]) => ChartWizardDataRow[];
272
123
 
273
124
  /**
274
125
  * Maps the Grid selectedState to data to be displayed in the Chart Wizard.
@@ -286,24 +137,6 @@ export declare const getWizardDataFromGridSelection: (args: {
286
137
  dataItemKey: string;
287
138
  }) => ChartWizardDataRow[];
288
139
 
289
- /**
290
- * @hidden
291
- */
292
- export declare const isCategorical: (type?: SeriesType) => boolean | undefined;
293
-
294
- /**
295
- * @hidden
296
- */
297
- export declare const mergeStates: (state: ChartWizardState, newState: ChartWizardState) => ChartWizardState;
298
-
299
- /**
300
- * @hidden
301
- */
302
- export declare const parseFont: (font?: string) => {
303
- size: string | undefined;
304
- name: string | undefined;
305
- };
306
-
307
140
  /**
308
141
  * @hidden
309
142
  */
@@ -323,16 +156,4 @@ declare abstract class PreventableEvent {
323
156
  isDefaultPrevented(): boolean;
324
157
  }
325
158
 
326
- /**
327
- * @hidden
328
- */
329
- export declare interface SeriesItem extends ChartSeriesItemProps {
330
- id: number;
331
- }
332
-
333
- /**
334
- * @hidden
335
- */
336
- export declare const updateState: (currentState: ChartWizardState, action: ActionTypes, value: any) => ChartWizardState;
337
-
338
159
  export { }
package/index.js CHANGED
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./ChartWizard.js"),e=require("./chart-wizard-state.js"),a=require("./grid-integration/get-grid-selected-rows.js"),r=require("./grid-integration/get-wizard-data-from-grid-selection.js"),i=require("./common/get-wizard-data-from-data-rows.js");exports.ChartWizard=t.ChartWizard;exports.ActionTypes=e.ActionTypes;exports.createInitialState=e.createInitialState;exports.createState=e.createState;exports.fontNames=e.fontNames;exports.fontSizes=e.fontSizes;exports.isCategorical=e.isCategorical;exports.mergeStates=e.mergeStates;exports.parseFont=e.parseFont;exports.updateState=e.updateState;exports.getGridSelectedRows=a.getGridSelectedRows;exports.getWizardDataFromGridSelection=r.getWizardDataFromGridSelection;exports.getWizardDataFromDataRows=i.getWizardDataFromDataRows;
8
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./ChartWizard.js"),t=require("./utils.js"),r=require("./grid-integration/get-grid-selected-rows.js"),a=require("./grid-integration/get-wizard-data-from-grid-selection.js");exports.ChartWizard=e.ChartWizard;exports.getWizardDataFromDataRows=t.getWizardDataFromDataRows;exports.getGridSelectedRows=r.getGridSelectedRows;exports.getWizardDataFromGridSelection=a.getWizardDataFromGridSelection;
package/index.mjs CHANGED
@@ -6,23 +6,13 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  "use client";
9
- import { ChartWizard as r } from "./ChartWizard.mjs";
10
- import { ActionTypes as o, createInitialState as i, createState as m, fontNames as s, fontSizes as p, isCategorical as c, mergeStates as d, parseFont as f, updateState as n } from "./chart-wizard-state.mjs";
11
- import { getGridSelectedRows as g } from "./grid-integration/get-grid-selected-rows.mjs";
12
- import { getWizardDataFromGridSelection as x } from "./grid-integration/get-wizard-data-from-grid-selection.mjs";
13
- import { getWizardDataFromDataRows as D } from "./common/get-wizard-data-from-data-rows.mjs";
9
+ import { ChartWizard as t } from "./ChartWizard.mjs";
10
+ import { getWizardDataFromDataRows as a } from "./utils.mjs";
11
+ import { getGridSelectedRows as d } from "./grid-integration/get-grid-selected-rows.mjs";
12
+ import { getWizardDataFromGridSelection as f } from "./grid-integration/get-wizard-data-from-grid-selection.mjs";
14
13
  export {
15
- o as ActionTypes,
16
- r as ChartWizard,
17
- i as createInitialState,
18
- m as createState,
19
- s as fontNames,
20
- p as fontSizes,
21
- g as getGridSelectedRows,
22
- D as getWizardDataFromDataRows,
23
- x as getWizardDataFromGridSelection,
24
- c as isCategorical,
25
- d as mergeStates,
26
- f as parseFont,
27
- n as updateState
14
+ t as ChartWizard,
15
+ d as getGridSelectedRows,
16
+ a as getWizardDataFromDataRows,
17
+ f as getWizardDataFromGridSelection
28
18
  };
package/messages.js CHANGED
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t="chartWizard.window.title",a="chartWizard.export.button",r="chartWizard.exportPDF.button",o="chartWizard.exportSVG.button",e="chartWizard.exportPNG.button",i="chartWizard.tab.chart",l="chartWizard.tab.data",s="chartWizard.tab.format",c="chartWizard.chart.barChart.expandText",n="chartWizard.chart.barChart.bar",m="chartWizard.chart.barChart.stackedBar",h="chartWizard.chart.barChart.100%stackedBar",f="chartWizard.chart.pieChart.expandText",d="chartWizard.chart.pieChart.pie",x="chartWizard.chart.columnChart.expandText",A="chartWizard.chart.columnChart.column",C="chartWizard.chart.columnChart.stackedColumn",u="chartWizard.chart.columnChart.100%stackedColumn",g="chartWizard.chart.lineChart.expandText",z="chartWizard.chart.lineChart.line",b="chartWizard.chart.lineChart.stackedLine",W="chartWizard.chart.lineChart.100%stackedLine",L="chartWizard.chart.scatterChart.expandText",T="chartWizard.chart.scatterChart.scatter",S="chartWizard.data.configuration.expandText",p="chartWizard.data.configuration.categoryAxis",y="chartWizard.data.configuration.xAxis",P="chartWizard.data.configuration.valueAxis",F="chartWizard.data.configuration.series.title",V="chartWizard.data.configuration.series.add",k="chartWizard.format.chartArea.expandText",B="chartWizard.format.chartArea.margins",v="chartWizard.format.chartArea.margins.auto",R="chartWizard.format.chartArea.margins.left",w="chartWizard.format.chartArea.margins.right",M="chartWizard.format.chartArea.margins.top",G="chartWizard.format.chartArea.margins.bottom",D="chartWizard.format.chartArea.background",N="chartWizard.format.chartArea.background.color",X="chartWizard.format.title.expandText",O="chartWizard.format.title.applyTo",Y="chartWizard.format.title.chartTitle",j="chartWizard.format.title.chartSubtitle",E="chartWizard.format.title.label",q="chartWizard.format.title.font",H="chartWizard.format.title.fontPlaceholder",I="chartWizard.format.title.size",J="chartWizard.format.title.sizePlaceholder",K="chartWizard.format.title.color",Q="chartWizard.format.series.expandText",U="chartWizard.format.series.applyTo",Z="chartWizard.format.series.allSeries",_="chartWizard.format.series.color",$="chartWizard.format.series.showLabels",tt="chartWizard.format.legend.expandText",at="chartWizard.format.legend.showLegend",rt="chartWizard.format.legend.font",ot="chartWizard.format.legend.fontPlaceholder",et="chartWizard.format.legend.size",it="chartWizard.format.legend.sizePlaceholder",lt="chartWizard.format.legend.color",st="chartWizard.format.legend.position",ct="chartWizard.format.legend.position.top",nt="chartWizard.format.legend.position.bottom",mt="chartWizard.format.legend.position.left",ht="chartWizard.format.legend.position.right",ft="chartWizard.format.categoryAxis.expandText",dt="chartWizard.format.xAxis.expandText",xt="chartWizard.format.categoryAxis.title.expandText",At="chartWizard.format.categoryAxis.title.placeholder",Ct="chartWizard.format.categoryAxis.title.font",ut="chartWizard.format.categoryAxis.title.fontPlaceholder",gt="chartWizard.format.categoryAxis.title.size",zt="chartWizard.format.categoryAxis.title.sizePlaceholder",bt="chartWizard.format.categoryAxis.title.color",Wt="chartWizard.format.categoryAxis.labels.text",Lt="chartWizard.format.categoryAxis.labels.font",Tt="chartWizard.format.categoryAxis.labels.fontPlaceholder",St="chartWizard.format.categoryAxis.labels.size",pt="chartWizard.format.categoryAxis.labels.sizePlaceholder",yt="chartWizard.format.categoryAxis.labels.color",Pt="chartWizard.format.categoryAxis.labels.rotation.text",Ft="chartWizard.format.categoryAxis.labels.rotation.auto",Vt="chartWizard.format.categoryAxis.labels.reverseOrder",kt="chartWizard.format.valueAxis.expandText",Bt="chartWizard.format.yAxis.expandText",vt="chartWizard.format.valueAxis.title.text",Rt="chartWizard.format.valueAxis.title.placeholder",wt="chartWizard.format.valueAxis.title.font",Mt="chartWizard.format.valueAxis.title.fontPlaceholder",Gt="chartWizard.format.valueAxis.title.size",Dt="chartWizard.format.valueAxis.title.sizePlaceholder",Nt="chartWizard.format.valueAxis.title.color",Xt="chartWizard.format.valueAxis.labels.text",Ot="chartWizard.format.valueAxis.labelFormat",Yt="chartWizard.format.valueAxis.labelFormat.text",jt="chartWizard.format.valueAxis.labelFormat.number",Et="chartWizard.format.valueAxis.labelFormat.currency",qt="chartWizard.format.valueAxis.labelFormat.percent",Ht="chartWizard.format.valueAxis.labels.font",It="chartWizard.format.valueAxis.labels.fontPlaceholder",Jt="chartWizard.format.valueAxis.labels.size",Kt="chartWizard.format.valueAxis.labels.sizePlaceholder",Qt="chartWizard.format.valueAxis.labels.color",Ut="chartWizard.format.valueAxis.labels.rotation.text",Zt="chartWizard.format.valueAxis.labels.rotation.auto",_t={[t]:"Chart Preview",[a]:"Export",[r]:"PDF File",[o]:"SVG File",[e]:"PNG File",[i]:"Chart",[l]:"Data",[s]:"Format",[c]:"Bar Chart",[n]:"Bar",[m]:"Stacked Bar",[h]:"100% Stacked Bar",[f]:"Pie Chart",[d]:"Pie",[x]:"Column Chart",[A]:"Column",[C]:"Stacked Column",[u]:"100% Stacked Column",[g]:"Line Chart",[z]:"Line",[b]:"Stacked Line",[W]:"100% Stacked Line",[L]:"Scatter Chart",[T]:"Scatter",[S]:"Configuration",[p]:"Category Axis",[y]:"X Axis",[P]:"Value Axis",[F]:"Series",[V]:"Add",[k]:"Chart Area",[B]:"Margins",[v]:"Auto",[R]:"Left",[w]:"Right",[M]:"Top",[G]:"Bottom",[D]:"Background",[N]:"Color",[X]:"Title",[O]:"Apply to",[Y]:"Chart Title",[j]:"Chart Subtitle",[E]:"Title",[q]:"Font",[H]:"(inherited font)",[I]:"Size",[J]:"px",[K]:"Color",[Q]:"Series",[U]:"Apply to",[Z]:"All Series",[_]:"Color",[$]:"Show Labels",[tt]:"Legend",[at]:"Show Legend",[rt]:"Font",[ot]:"(inherited font)",[et]:"Size",[it]:"px",[lt]:"Color",[st]:"Position",[ct]:"Top",[nt]:"Bottom",[mt]:"Left",[ht]:"Right",[ft]:"Category Axis",[dt]:"X Axis",[xt]:"Title",[At]:"Axis Title",[Ct]:"Font",[ut]:"(inherited font)",[gt]:"Size",[zt]:"px",[bt]:"Color",[Wt]:"Labels",[Lt]:"Font",[Tt]:"(inherited font)",[St]:"Size",[pt]:"px",[yt]:"Color",[Pt]:"Rotation",[Ft]:"Auto",[Vt]:"Reverse Order",[kt]:"Value Axis",[Bt]:"Y Axis",[vt]:"Title",[Rt]:"Axis Title",[wt]:"Font",[Mt]:"(inherited font)",[Gt]:"Size",[Dt]:"px",[Nt]:"Color",[Xt]:"Labels",[Ot]:"Label Format",[Yt]:"Text",[jt]:"Number",[Et]:"Currency",[qt]:"Percent",[Ht]:"Font",[It]:"(inherited font)",[Jt]:"Size",[Kt]:"px",[Qt]:"Color",[Ut]:"Rotation",[Zt]:"Auto"};exports.barChart=c;exports.barChart100StackedBar=h;exports.barChartBar=n;exports.barChartStackedBar=m;exports.columnChart=x;exports.columnChart100StackedColumn=u;exports.columnChartColumn=A;exports.columnChartStackedColumn=C;exports.configuration=S;exports.configurationCategoryAxis=p;exports.configurationSeries=F;exports.configurationSeriesAdd=V;exports.configurationValueAxis=P;exports.configurationXAxis=y;exports.exportButton=a;exports.exportPDFButton=r;exports.exportPNGButton=e;exports.exportSVGButton=o;exports.formatCategoryAxis=ft;exports.formatCategoryAxisLabels=Wt;exports.formatCategoryAxisLabelsColor=yt;exports.formatCategoryAxisLabelsFont=Lt;exports.formatCategoryAxisLabelsFontPlaceholder=Tt;exports.formatCategoryAxisLabelsReverseOrder=Vt;exports.formatCategoryAxisLabelsRotation=Pt;exports.formatCategoryAxisLabelsRotationAuto=Ft;exports.formatCategoryAxisLabelsSize=St;exports.formatCategoryAxisLabelsSizePlaceholder=pt;exports.formatCategoryAxisTitle=xt;exports.formatCategoryAxisTitleColor=bt;exports.formatCategoryAxisTitleFont=Ct;exports.formatCategoryAxisTitleFontPlaceholder=ut;exports.formatCategoryAxisTitlePlaceholder=At;exports.formatCategoryAxisTitleSize=gt;exports.formatCategoryAxisTitleSizePlaceholder=zt;exports.formatChartArea=k;exports.formatChartAreaBackground=D;exports.formatChartAreaBackgroundColor=N;exports.formatChartAreaMargins=B;exports.formatChartAreaMarginsAuto=v;exports.formatChartAreaMarginsBottom=G;exports.formatChartAreaMarginsLeft=R;exports.formatChartAreaMarginsRight=w;exports.formatChartAreaMarginsTop=M;exports.formatLegend=tt;exports.formatLegendColor=lt;exports.formatLegendFont=rt;exports.formatLegendFontPlaceholder=ot;exports.formatLegendPosition=st;exports.formatLegendPositionBottom=nt;exports.formatLegendPositionLeft=mt;exports.formatLegendPositionRight=ht;exports.formatLegendPositionTop=ct;exports.formatLegendShowLegend=at;exports.formatLegendSize=et;exports.formatLegendSizePlaceholder=it;exports.formatSeries=Q;exports.formatSeriesAllSeries=Z;exports.formatSeriesApplyTo=U;exports.formatSeriesColor=_;exports.formatSeriesShowLabels=$;exports.formatTitle=X;exports.formatTitleApplyTo=O;exports.formatTitleChartSubtitle=j;exports.formatTitleChartTitle=Y;exports.formatTitleColor=K;exports.formatTitleFont=q;exports.formatTitleFontPlaceholder=H;exports.formatTitleLabel=E;exports.formatTitleSize=I;exports.formatTitleSizePlaceholder=J;exports.formatValueAxis=kt;exports.formatValueAxisLabels=Xt;exports.formatValueAxisLabelsColor=Qt;exports.formatValueAxisLabelsFont=Ht;exports.formatValueAxisLabelsFontPlaceholder=It;exports.formatValueAxisLabelsFormat=Ot;exports.formatValueAxisLabelsFormatCurrency=Et;exports.formatValueAxisLabelsFormatNumber=jt;exports.formatValueAxisLabelsFormatPercent=qt;exports.formatValueAxisLabelsFormatText=Yt;exports.formatValueAxisLabelsRotation=Ut;exports.formatValueAxisLabelsRotationAuto=Zt;exports.formatValueAxisLabelsSize=Jt;exports.formatValueAxisLabelsSizePlaceholder=Kt;exports.formatValueAxisTitle=vt;exports.formatValueAxisTitleColor=Nt;exports.formatValueAxisTitleFont=wt;exports.formatValueAxisTitleFontPlaceholder=Mt;exports.formatValueAxisTitlePlaceholder=Rt;exports.formatValueAxisTitleSize=Gt;exports.formatValueAxisTitleSizePlaceholder=Dt;exports.formatXAxis=dt;exports.formatYAxis=Bt;exports.lineChart=g;exports.lineChart100StackedLine=W;exports.lineChartLine=z;exports.lineChartStackedLine=b;exports.messages=_t;exports.pieChart=f;exports.pieChartPie=d;exports.scatterChart=L;exports.scatterChartScatter=T;exports.tabChart=i;exports.tabData=l;exports.tabFormat=s;exports.windowTitle=t;
8
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@progress/kendo-charts"),a=t.ChartWizardCommon.messages,r="chartWizard.window.title",o="chartWizard.export.button",e="chartWizard.exportPDF.button",i="chartWizard.exportSVG.button",l="chartWizard.exportPNG.button",s="chartWizard.tab.chart",c="chartWizard.tab.data",n="chartWizard.tab.format",m="chartWizard.chart.barChart.expandText",f="chartWizard.chart.barChart.bar",h="chartWizard.chart.barChart.stackedBar",d="chartWizard.chart.barChart.100%stackedBar",x="chartWizard.chart.pieChart.expandText",A="chartWizard.chart.pieChart.pie",g="chartWizard.chart.columnChart.expandText",u="chartWizard.chart.columnChart.column",z="chartWizard.chart.columnChart.stackedColumn",C="chartWizard.chart.columnChart.100%stackedColumn",b="chartWizard.chart.lineChart.expandText",W="chartWizard.chart.lineChart.line",L="chartWizard.chart.lineChart.stackedLine",T="chartWizard.chart.lineChart.100%stackedLine",S="chartWizard.chart.scatterChart.expandText",y="chartWizard.chart.scatterChart.scatter",p="chartWizard.data.configuration.expandText",P="chartWizard.data.configuration.categoryAxis",V="chartWizard.data.configuration.xAxis",F="chartWizard.data.configuration.valueAxis",v="chartWizard.data.configuration.series.title",k="chartWizard.data.configuration.series.add",B="chartWizard.format.chartArea.expandText",R="chartWizard.format.chartArea.margins",M="chartWizard.format.chartArea.margins.auto",w="chartWizard.format.chartArea.margins.left",G="chartWizard.format.chartArea.margins.right",D="chartWizard.format.chartArea.margins.top",N="chartWizard.format.chartArea.margins.bottom",O="chartWizard.format.chartArea.background",X="chartWizard.format.chartArea.background.color",Y="chartWizard.format.title.expandText",j="chartWizard.format.title.applyTo",q="chartWizard.format.title.chartTitle",E="chartWizard.format.title.chartSubtitle",H="chartWizard.format.title.label",I="chartWizard.format.title.font",J="chartWizard.format.title.fontPlaceholder",K="chartWizard.format.title.size",Q="chartWizard.format.title.sizePlaceholder",U="chartWizard.format.title.color",Z="chartWizard.format.series.expandText",_="chartWizard.format.series.applyTo",$="chartWizard.format.series.allSeries",tt="chartWizard.format.series.color",at="chartWizard.format.series.showLabels",rt="chartWizard.format.legend.expandText",ot="chartWizard.format.legend.showLegend",et="chartWizard.format.legend.font",it="chartWizard.format.legend.fontPlaceholder",lt="chartWizard.format.legend.size",st="chartWizard.format.legend.sizePlaceholder",ct="chartWizard.format.legend.color",nt="chartWizard.format.legend.position",mt="chartWizard.format.legend.position.top",ft="chartWizard.format.legend.position.bottom",ht="chartWizard.format.legend.position.left",dt="chartWizard.format.legend.position.right",xt="chartWizard.format.categoryAxis.expandText",At="chartWizard.format.xAxis.expandText",gt="chartWizard.format.categoryAxis.title.expandText",ut="chartWizard.format.categoryAxis.title.placeholder",zt="chartWizard.format.categoryAxis.title.font",Ct="chartWizard.format.categoryAxis.title.fontPlaceholder",bt="chartWizard.format.categoryAxis.title.size",Wt="chartWizard.format.categoryAxis.title.sizePlaceholder",Lt="chartWizard.format.categoryAxis.title.color",Tt="chartWizard.format.categoryAxis.labels.text",St="chartWizard.format.categoryAxis.labels.font",yt="chartWizard.format.categoryAxis.labels.fontPlaceholder",pt="chartWizard.format.categoryAxis.labels.size",Pt="chartWizard.format.categoryAxis.labels.sizePlaceholder",Vt="chartWizard.format.categoryAxis.labels.color",Ft="chartWizard.format.categoryAxis.labels.rotation.text",vt="chartWizard.format.categoryAxis.labels.rotation.auto",kt="chartWizard.format.categoryAxis.labels.reverseOrder",Bt="chartWizard.format.valueAxis.expandText",Rt="chartWizard.format.yAxis.expandText",Mt="chartWizard.format.valueAxis.title.text",wt="chartWizard.format.valueAxis.title.placeholder",Gt="chartWizard.format.valueAxis.title.font",Dt="chartWizard.format.valueAxis.title.fontPlaceholder",Nt="chartWizard.format.valueAxis.title.size",Ot="chartWizard.format.valueAxis.title.sizePlaceholder",Xt="chartWizard.format.valueAxis.title.color",Yt="chartWizard.format.valueAxis.labels.text",jt="chartWizard.format.valueAxis.labelFormat",qt="chartWizard.format.valueAxis.labelFormat.text",Et="chartWizard.format.valueAxis.labelFormat.number",Ht="chartWizard.format.valueAxis.labelFormat.currency",It="chartWizard.format.valueAxis.labelFormat.percent",Jt="chartWizard.format.valueAxis.labels.font",Kt="chartWizard.format.valueAxis.labels.fontPlaceholder",Qt="chartWizard.format.valueAxis.labels.size",Ut="chartWizard.format.valueAxis.labels.sizePlaceholder",Zt="chartWizard.format.valueAxis.labels.color",_t="chartWizard.format.valueAxis.labels.rotation.text",$t="chartWizard.format.valueAxis.labels.rotation.auto";exports.barChart=m;exports.barChart100StackedBar=d;exports.barChartBar=f;exports.barChartStackedBar=h;exports.columnChart=g;exports.columnChart100StackedColumn=C;exports.columnChartColumn=u;exports.columnChartStackedColumn=z;exports.configuration=p;exports.configurationCategoryAxis=P;exports.configurationSeries=v;exports.configurationSeriesAdd=k;exports.configurationValueAxis=F;exports.configurationXAxis=V;exports.exportButton=o;exports.exportPDFButton=e;exports.exportPNGButton=l;exports.exportSVGButton=i;exports.formatCategoryAxis=xt;exports.formatCategoryAxisLabels=Tt;exports.formatCategoryAxisLabelsColor=Vt;exports.formatCategoryAxisLabelsFont=St;exports.formatCategoryAxisLabelsFontPlaceholder=yt;exports.formatCategoryAxisLabelsReverseOrder=kt;exports.formatCategoryAxisLabelsRotation=Ft;exports.formatCategoryAxisLabelsRotationAuto=vt;exports.formatCategoryAxisLabelsSize=pt;exports.formatCategoryAxisLabelsSizePlaceholder=Pt;exports.formatCategoryAxisTitle=gt;exports.formatCategoryAxisTitleColor=Lt;exports.formatCategoryAxisTitleFont=zt;exports.formatCategoryAxisTitleFontPlaceholder=Ct;exports.formatCategoryAxisTitlePlaceholder=ut;exports.formatCategoryAxisTitleSize=bt;exports.formatCategoryAxisTitleSizePlaceholder=Wt;exports.formatChartArea=B;exports.formatChartAreaBackground=O;exports.formatChartAreaBackgroundColor=X;exports.formatChartAreaMargins=R;exports.formatChartAreaMarginsAuto=M;exports.formatChartAreaMarginsBottom=N;exports.formatChartAreaMarginsLeft=w;exports.formatChartAreaMarginsRight=G;exports.formatChartAreaMarginsTop=D;exports.formatLegend=rt;exports.formatLegendColor=ct;exports.formatLegendFont=et;exports.formatLegendFontPlaceholder=it;exports.formatLegendPosition=nt;exports.formatLegendPositionBottom=ft;exports.formatLegendPositionLeft=ht;exports.formatLegendPositionRight=dt;exports.formatLegendPositionTop=mt;exports.formatLegendShowLegend=ot;exports.formatLegendSize=lt;exports.formatLegendSizePlaceholder=st;exports.formatSeries=Z;exports.formatSeriesAllSeries=$;exports.formatSeriesApplyTo=_;exports.formatSeriesColor=tt;exports.formatSeriesShowLabels=at;exports.formatTitle=Y;exports.formatTitleApplyTo=j;exports.formatTitleChartSubtitle=E;exports.formatTitleChartTitle=q;exports.formatTitleColor=U;exports.formatTitleFont=I;exports.formatTitleFontPlaceholder=J;exports.formatTitleLabel=H;exports.formatTitleSize=K;exports.formatTitleSizePlaceholder=Q;exports.formatValueAxis=Bt;exports.formatValueAxisLabels=Yt;exports.formatValueAxisLabelsColor=Zt;exports.formatValueAxisLabelsFont=Jt;exports.formatValueAxisLabelsFontPlaceholder=Kt;exports.formatValueAxisLabelsFormat=jt;exports.formatValueAxisLabelsFormatCurrency=Ht;exports.formatValueAxisLabelsFormatNumber=Et;exports.formatValueAxisLabelsFormatPercent=It;exports.formatValueAxisLabelsFormatText=qt;exports.formatValueAxisLabelsRotation=_t;exports.formatValueAxisLabelsRotationAuto=$t;exports.formatValueAxisLabelsSize=Qt;exports.formatValueAxisLabelsSizePlaceholder=Ut;exports.formatValueAxisTitle=Mt;exports.formatValueAxisTitleColor=Xt;exports.formatValueAxisTitleFont=Gt;exports.formatValueAxisTitleFontPlaceholder=Dt;exports.formatValueAxisTitlePlaceholder=wt;exports.formatValueAxisTitleSize=Nt;exports.formatValueAxisTitleSizePlaceholder=Ot;exports.formatXAxis=At;exports.formatYAxis=Rt;exports.lineChart=b;exports.lineChart100StackedLine=T;exports.lineChartLine=W;exports.lineChartStackedLine=L;exports.messages=a;exports.pieChart=x;exports.pieChartPie=A;exports.scatterChart=S;exports.scatterChartScatter=y;exports.tabChart=s;exports.tabData=c;exports.tabFormat=n;exports.windowTitle=r;