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

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/index.d.ts CHANGED
@@ -6,94 +6,25 @@
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 { ChartWizardState } from '@progress/kendo-charts';
12
+ import { DataColumn } from '@progress/kendo-charts';
13
+ import { DataRow } from '@progress/kendo-charts';
18
14
  import { GridHandle } from '@progress/kendo-react-grid';
19
15
  import { ImageExportOptions } from '@progress/kendo-drawing';
20
16
  import { PDFOptions } from '@progress/kendo-drawing/pdf';
21
17
  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
- }
18
+ import { WindowProps } from '@progress/kendo-react-dialogs';
73
19
 
74
20
  /**
75
21
  * The KendoReact ChartWizard component.
76
22
  */
77
23
  export declare const ChartWizard: React_2.ForwardRefExoticComponent<ChartWizardProps & React_2.RefAttributes<ChartWizardHandle | null>>;
78
24
 
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
- }
25
+ export { ChartWizardDataCell }
92
26
 
93
- /**
94
- * Describes a data row for the Chart Wizard.
95
- */
96
- export declare type ChartWizardDataRow = ChartWizardDataCell[];
27
+ export { ChartWizardDataRow }
97
28
 
98
29
  /**
99
30
  * The default state of the ChartWizard component.
@@ -141,68 +72,15 @@ export declare interface ChartWizardProps {
141
72
  * The default state of the ChartWizard component.
142
73
  */
143
74
  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
- /**
163
- * The series type of the chart.
164
- *
165
- * The supported series types are:
166
- * - `'column'`
167
- * - `'bar'`
168
- * - `'line'`
169
- * - `'pie'`
170
- * - `'scatter'`
171
- */
172
- seriesType?: SeriesType;
173
- categoryField?: string;
174
- valueField?: string;
175
75
  /**
176
- * The stack configuration of the series.
76
+ * The component that will be used to render the ChartWizard window.
177
77
  */
178
- stack?: SeriesStack | false;
78
+ window?: React_2.ComponentType<WindowProps>;
179
79
  }
180
80
 
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;
81
+ export { DataColumn }
190
82
 
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
- }
198
-
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
- }
83
+ export { DataRow }
206
84
 
207
85
  /**
208
86
  * Arguments for the `export` event on the Chart Wizard.
@@ -228,25 +106,6 @@ export declare interface ExportOptions {
228
106
  image?: ImageExportOptions;
229
107
  }
230
108
 
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
109
  /**
251
110
  * Maps the Grid selectedState to a more general DataRows type to be displayed in the Chart Wizard.
252
111
  *
@@ -263,12 +122,7 @@ export declare function getGridSelectedRows(args: {
263
122
  dataItemKey: string;
264
123
  }): DataRow[];
265
124
 
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[];
125
+ export declare const getWizardDataFromDataRows: (dataRows: DataRow[]) => ChartWizardDataRow[];
272
126
 
273
127
  /**
274
128
  * Maps the Grid selectedState to data to be displayed in the Chart Wizard.
@@ -286,24 +140,6 @@ export declare const getWizardDataFromGridSelection: (args: {
286
140
  dataItemKey: string;
287
141
  }) => ChartWizardDataRow[];
288
142
 
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
143
  /**
308
144
  * @hidden
309
145
  */
@@ -323,16 +159,4 @@ declare abstract class PreventableEvent {
323
159
  isDefaultPrevented(): boolean;
324
160
  }
325
161
 
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
162
  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("./grid-integration/get-grid-selected-rows.js"),r=require("./grid-integration/get-wizard-data-from-grid-selection.js"),a=require("./common/get-wizard-data-from-data-rows.js");exports.ChartWizard=e.ChartWizard;exports.getGridSelectedRows=t.getGridSelectedRows;exports.getWizardDataFromGridSelection=r.getWizardDataFromGridSelection;exports.getWizardDataFromDataRows=a.getWizardDataFromDataRows;
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 { getGridSelectedRows as a } from "./grid-integration/get-grid-selected-rows.mjs";
11
+ import { getWizardDataFromGridSelection as d } from "./grid-integration/get-wizard-data-from-grid-selection.mjs";
12
+ import { getWizardDataFromDataRows as f } from "./common/get-wizard-data-from-data-rows.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
+ a as getGridSelectedRows,
16
+ f as getWizardDataFromDataRows,
17
+ d 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;