@syncfusion/ej2-treemap 31.2.2 → 32.1.19

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 (49) hide show
  1. package/README.md +11 -2
  2. package/aceconfig.js +17 -0
  3. package/dist/ej2-treemap.min.js +1 -10
  4. package/dist/ej2-treemap.umd.min.js +1 -10
  5. package/dist/ej2-treemap.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-treemap.es2015.js +4 -0
  7. package/dist/es6/ej2-treemap.es2015.js.map +1 -1
  8. package/dist/es6/ej2-treemap.es5.js +4 -0
  9. package/dist/es6/ej2-treemap.es5.js.map +1 -1
  10. package/dist/global/ej2-treemap.min.js +1 -10
  11. package/dist/global/ej2-treemap.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/package.json +17 -52
  14. package/src/treemap/treemap.d.ts +1 -0
  15. package/src/treemap/treemap.js +4 -0
  16. package/dist/ts/index.d.ts +0 -4
  17. package/dist/ts/index.ts +0 -4
  18. package/dist/ts/treemap/index.d.ts +0 -19
  19. package/dist/ts/treemap/index.ts +0 -19
  20. package/dist/ts/treemap/layout/legend.d.ts +0 -137
  21. package/dist/ts/treemap/layout/legend.ts +0 -1095
  22. package/dist/ts/treemap/layout/render-panel.d.ts +0 -47
  23. package/dist/ts/treemap/layout/render-panel.ts +0 -758
  24. package/dist/ts/treemap/model/base-model.d.ts +0 -795
  25. package/dist/ts/treemap/model/base.d.ts +0 -671
  26. package/dist/ts/treemap/model/base.ts +0 -798
  27. package/dist/ts/treemap/model/constants.d.ts +0 -117
  28. package/dist/ts/treemap/model/constants.ts +0 -118
  29. package/dist/ts/treemap/model/image-export.d.ts +0 -34
  30. package/dist/ts/treemap/model/image-export.ts +0 -117
  31. package/dist/ts/treemap/model/interface.d.ts +0 -555
  32. package/dist/ts/treemap/model/interface.ts +0 -583
  33. package/dist/ts/treemap/model/pdf-export.d.ts +0 -36
  34. package/dist/ts/treemap/model/pdf-export.ts +0 -105
  35. package/dist/ts/treemap/model/print.d.ts +0 -45
  36. package/dist/ts/treemap/model/print.ts +0 -106
  37. package/dist/ts/treemap/model/theme.d.ts +0 -19
  38. package/dist/ts/treemap/model/theme.ts +0 -450
  39. package/dist/ts/treemap/treemap-model.d.ts +0 -374
  40. package/dist/ts/treemap/treemap.d.ts +0 -724
  41. package/dist/ts/treemap/treemap.ts +0 -1817
  42. package/dist/ts/treemap/user-interaction/highlight-selection.d.ts +0 -118
  43. package/dist/ts/treemap/user-interaction/highlight-selection.ts +0 -799
  44. package/dist/ts/treemap/user-interaction/tooltip.d.ts +0 -42
  45. package/dist/ts/treemap/user-interaction/tooltip.ts +0 -228
  46. package/dist/ts/treemap/utils/enum.d.ts +0 -256
  47. package/dist/ts/treemap/utils/enum.ts +0 -263
  48. package/dist/ts/treemap/utils/helper.d.ts +0 -543
  49. package/dist/ts/treemap/utils/helper.ts +0 -1453
@@ -1,263 +0,0 @@
1
-
2
- /**
3
- * Defines the position of the label in treemap leaf node.
4
- */
5
- export type LabelPosition =
6
- /** Specifies to show the position of the label based on the top and left of the treemap leaf nodes. */
7
- 'TopLeft' |
8
- /** Specifies to show the position of the label based on the top and center of the treemap leaf nodes. */
9
- 'TopCenter' |
10
- /** Specifies to show the position of the label based on the top and right of the treemap leaf nodes. */
11
- 'TopRight' |
12
- /** Specifies to show the position of the label based on the center and left of the treemap leaf nodes. */
13
- 'CenterLeft' |
14
- /** Specifies to show the position of the label based on the center of the treemap leaf nodes. */
15
- 'Center' |
16
- /** Specifies to show the position of the label based on the center and right of the treemap leaf nodes. */
17
- 'CenterRight' |
18
- /** Specifies to show the position of the label based on the bottom and left of the treemap leaf nodes. */
19
- 'BottomLeft' |
20
- /** Specifies to show the position of the label based on the bottom and center of the treemap leaf nodes. */
21
- 'BottomCenter' |
22
- /** Specifies to show the position of the label based on the bottom and right of the treemap leaf nodes. */
23
- 'BottomRight';
24
-
25
- /**
26
- * Specifies the layout rendering mode of the treemap.
27
- */
28
- export type LayoutMode =
29
- /** This visualizes the treemap as the nested rectangles having size proportionate to weight value. */
30
- 'Squarified' |
31
- /** This visualizes the treemap as the horizontal rectangles having size proportionate to weight value. */
32
- 'SliceAndDiceHorizontal' |
33
- /** This visualizes the treemap as the vertical rectangles having size proportionate to weight value. */
34
- 'SliceAndDiceVertical' |
35
- /** This visualizes the treemap rectangles having size proportionate to weight value. This type automatically provides the orientation based on the size of the treemap. */
36
- 'SliceAndDiceAuto';
37
-
38
- /**
39
- * Specifies the alignment of the elements in the treemap.
40
- */
41
- export type Alignment =
42
- /** Defines the alignment is near the treemap with respect the element position. */
43
- 'Near' |
44
- /** Defines the alignment is at center of the treemap with respect the element position. */
45
- 'Center' |
46
- /** Defines the alignment is far from the treemap with respect the element position. */
47
- 'Far';
48
- /**
49
- * Specifies the element which must be highlighted when mouse over is performed in treemap.
50
- */
51
- export type HighLightMode =
52
- /** Highlights the treemap item when the mouse over is done on the treemap item. */
53
- 'Item' |
54
- /** Highlights the treemap item and all its children when the mouse over is done on the treemap item. */
55
- 'Child' |
56
- /** Highlights the treemap item and all its parent levels when the mouse over is done on the treemap item. */
57
- 'Parent' |
58
- /** Highlights all the related nodes such as child and parent when the mouse over is done on the treemap item. */
59
- 'All';
60
- /**
61
- * Specifies the element which must be selected when click event is performed in treemap.
62
- */
63
- export type SelectionMode =
64
- /** Selects the treemap item when the click operation is done on the treemap item. */
65
- 'Item' |
66
- /** Selects the treemap item and all its children when the click operation is done on the treemap item. */
67
- 'Child' |
68
- /** Selects the treemap item and all its parent levels when the click operation is done on the treemap item.. */
69
- 'Parent' |
70
- /** Selects all the related nodes such as child and parent when the click operation is done on the treemap item. */
71
- 'All';
72
- /**
73
- * Specifies the export type for the treemap.
74
- */
75
- export type ExportType =
76
- /** Specifies that the rendered treemap is to be exported in the PNG format. */
77
- 'PNG' |
78
- /** Specifies that the rendered treemap is to be exported in the JPEG format. */
79
- 'JPEG' |
80
- /** Specifies that the rendered treemap is to be exported in the SVG format. */
81
- 'SVG' |
82
- /** Specifies that the rendered treemap is to be exported in the PDF format. */
83
- 'PDF';
84
- /**
85
- * Defines the action of the label to be placed within the defined margins.
86
- */
87
- export type LabelAlignment =
88
- /** Specifies that the label will be trimmed if it exceeds the defined margins. */
89
- 'Trim' |
90
- /** Specifies that the label will be hidden if it exceeds the defined margins. */
91
- 'Hide' |
92
- /** Specifies that the label will be wrapped by word to fit within the defined margins. */
93
- 'WrapByWord' |
94
- /** Specifies to wrap the data label if exceed the defined margins. */
95
- 'Wrap';
96
-
97
- /**
98
- * Defines the shape of legend item in the treemap.
99
- */
100
- export type LegendShape =
101
- /** Defines the legend shape as circle. */
102
- 'Circle' |
103
- /** Defines the legend shape as rectangle. */
104
- 'Rectangle' |
105
- /** Defines the legend shape as triangle. */
106
- 'Triangle' |
107
- /** Defines the legend shape as diamond. */
108
- 'Diamond' |
109
- /** Defines the legend shape as cross. */
110
- 'Cross' |
111
- /** Defines the legend shape as star. */
112
- 'Star' |
113
- /** Defines the legend shape as horizontal line. */
114
- 'HorizontalLine' |
115
- /** Defines the legend shape as vertical line. */
116
- 'VerticalLine' |
117
- /** Defines the legend shape as pentagon. */
118
- 'Pentagon' |
119
- /** Defines the legend shape as inverted triangle. */
120
- 'InvertedTriangle' |
121
- /** Defines the legend shape as image. */
122
- 'Image';
123
- /**
124
- * Defines the position of the legend in the treemap.
125
- */
126
- export type LegendPosition =
127
- /** Specifies to place the legend at the top of the treemap. */
128
- 'Top' |
129
- /** Specifies to place the legend on the left of the treemap. */
130
- 'Left' |
131
- /** Specifies to place the legend at the bottom of the treemap. */
132
- 'Bottom' |
133
- /** Specifies to place the legend on the right of the treemap. */
134
- 'Right' |
135
- /** Specifies to place the legend based on given custom positions. */
136
- 'Float' |
137
- /** Specifies to place the legend in a automatic position based on width and height. */
138
- 'Auto';
139
- /**
140
- * Defines the modes for rendering the legend.
141
- */
142
- export type LegendMode =
143
- /** Sets the legend as fixed, and has the option to add different shapes showcasing legend items. */
144
- 'Default' |
145
- /** Set the legend as interactive, which is rectangular in shape with an indicator showcasing legend items. */
146
- 'Interactive';
147
- /**
148
- * Specifies the orientation of the legend in the treemap.
149
- */
150
- export type LegendOrientation =
151
- /** Defines the legend renders with default behavior. */
152
- 'None' |
153
- /** Defines the legend rendered with items placed horizontally. */
154
- 'Horizontal' |
155
- /** Defines the legend rendered with items placed vertically. */
156
- 'Vertical';
157
- /**
158
- * Defines the action to perform when the labels intersect each other in the treemap.
159
- */
160
- export type LabelIntersectAction =
161
- /** Specifies that no action will be taken when the label contents intersect. */
162
- 'None' |
163
- /** Specifies that the data label should be trimmed when it intersects. */
164
- 'Trim' |
165
- /** Specifies that the data label should be hidden when it intersects. */
166
- 'Hide';
167
-
168
- /**
169
- * Defines the placement type of the label.
170
- */
171
- export type LabelPlacement =
172
- /** Specifies the label placement as before. */
173
- 'Before' |
174
- /** Specifies the label placement as after */
175
- 'After';
176
-
177
- /**
178
- * Defines the theme supported for treemap.
179
- */
180
- export type TreeMapTheme =
181
- /** Render a treemap with Material theme. */
182
- 'Material' |
183
- /** Render a treemap with Fabric theme. */
184
- 'Fabric' |
185
- /** Render a treemap with HighContrast light theme. */
186
- 'HighContrastLight' |
187
- /** Render a treemap with Bootstrap theme. */
188
- 'Bootstrap' |
189
- /** Render a treemap with Material dark theme. */
190
- 'MaterialDark' |
191
- /** Render a treemap with Fabric dark theme. */
192
- 'FabricDark' |
193
- /** Render a treemap with HighContrast dark theme. */
194
- 'HighContrast' |
195
- /** Render a treemap with Bootstrap dark theme. */
196
- 'BootstrapDark'|
197
- /** Render a treemap with Bootstrap4 theme. */
198
- 'Bootstrap4'|
199
- /** Render a treemap with Tailwind theme. */
200
- 'Tailwind' |
201
- /** Render a treemap with TailwindDark theme. */
202
- 'TailwindDark' |
203
- /** Render a treemap with Tailwind3 theme. */
204
- 'Tailwind3' |
205
- /** Render a treemap with Tailwind3Dark theme. */
206
- 'Tailwind3Dark' |
207
- /** Render a treemap with Bootstrap5 theme. */
208
- 'Bootstrap5' |
209
- /** Render a treemap with Bootstrap5 dark theme. */
210
- 'Bootstrap5Dark' |
211
- /** Render a treemap with Fluent theme. */
212
- 'Fluent' |
213
- /** Render a treemap with Fluent dark theme. */
214
- 'FluentDark' |
215
- /** Render a treemap with Material3 theme. */
216
- 'Material3' |
217
- /** Render a treemap with Material3Dark theme. */
218
- 'Material3Dark' |
219
- /** Render a treemap with Fluent2 theme. */
220
- 'Fluent2' |
221
- /** Render a treemap with Fluent2 dark theme. */
222
- 'Fluent2Dark' |
223
- /** Render a treemap with Fluent2 high contrast theme. */
224
- 'Fluent2HighContrast';
225
- /**
226
- * Defines the rendering directions to render the treemap items in the treemap.
227
- */
228
- export type RenderingMode =
229
- /** Renders the treemap items from top right to bottom left direction */
230
- 'TopRightBottomLeft' |
231
- /** Renders the treemap items from bottom left to top right direction */
232
- 'BottomLeftTopRight' |
233
- /** Renders the treemap items from bottom right to top left direction */
234
- 'BottomRightTopLeft' |
235
- /** Renders the treemap items from top left to bottom right direction */
236
- 'TopLeftBottomRight';
237
-
238
- /**
239
- * Defines the shape of the marker in the tooltip of the treemap.
240
- *
241
- * @private
242
- */
243
- export type MarkerShape =
244
- /** Renders circle shape marker in the tooltip. */
245
- 'Circle' |
246
- /** Renders rectangle shape marker in the tooltip. */
247
- 'Rectangle' |
248
- /** Renders triangle shape marker in the tooltip. */
249
- 'Triangle' |
250
- /** Renders diamond shape marker in the tooltip. */
251
- 'Diamond' |
252
- /** Renders cross shape marker in the tooltip. */
253
- 'Cross' |
254
- /** Renders horizontal line shape marker in the tooltip. */
255
- 'HorizontalLine' |
256
- /** Renders vertical line shape marker in the tooltip. */
257
- 'VerticalLine' |
258
- /** Renders pentagon shape marker in the tooltip. */
259
- 'Pentagon' |
260
- /** Renders inverted triangle shape marker in the tooltip. */
261
- 'InvertedTriangle' |
262
- /** Renders image marker in the tooltip. */
263
- 'Image';