@bryntum/chart-vue-3-thin 7.1.1

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.
@@ -0,0 +1,751 @@
1
+ import type { AlignSpec, Base, DomConfig, KeyMapConfig, MaskConfig, MenuItemEntry, Model, ModelConfig, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
2
+ import type { ChartListeners, ChartTooltipConfig, ChartContainerItemConfig, ChartContainerLayoutConfig, DataSeries, DataSeriesRole, Font } from '@bryntum/chart-thin';
3
+
4
+ export declare type BryntumChartProps = {
5
+ // Configs
6
+ /**
7
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
8
+ * content will be placed inside this element.
9
+ * ...
10
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-adopt)
11
+ */
12
+ adopt ? : HTMLElement|string
13
+ /**
14
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
15
+ * ...
16
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-align)
17
+ */
18
+ align ? : AlignSpec|string
19
+ /**
20
+ * When this widget is a child of a [Container](https://bryntum.com/products/chart/docs/api/Core/widget/Container), it will by default be participating in a
21
+ * flexbox layout. This config allows you to set this widget's
22
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
23
+ */
24
+ alignSelf ? : string
25
+ /**
26
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*
27
+ * `true` to show a connector arrow pointing to the align target.
28
+ */
29
+ anchor ? : Boolean
30
+ /**
31
+ * Whether to animate chart data changes.
32
+ */
33
+ animate ? : Boolean
34
+ /**
35
+ * Set the duration in milliseconds for all animations.
36
+ */
37
+ animationDuration ? : number
38
+ /**
39
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
40
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-element).
41
+ */
42
+ appendTo ? : HTMLElement|string
43
+ /**
44
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
45
+ * into an element which will be linked using the `aria-describedby` attribute.
46
+ * ...
47
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-ariaDescription)
48
+ */
49
+ ariaDescription ? : string
50
+ /**
51
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
52
+ * the `aria-label` attribute.
53
+ * ...
54
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-ariaLabel)
55
+ */
56
+ ariaLabel ? : string
57
+ /**
58
+ * Update assigned [record](https://bryntum.com/products/chart/docs/api/Core/widget/Container#config-record) automatically on field changes
59
+ */
60
+ autoUpdateRecord ? : Boolean
61
+ /**
62
+ * The stroke color used for the axis lines and ticks, or `null` for theme default.
63
+ */
64
+ axisColor ? : string
65
+ /**
66
+ * The text color used for the axis labels / ticks, or `null` to use `axisColor`.
67
+ */
68
+ axisLabelColor ? : string
69
+ /**
70
+ * The chart background color, or `null` for transparent.
71
+ */
72
+ background ? : string
73
+ /**
74
+ * (Optional) The name of a field in the chart data to use as the background color for each data point.
75
+ */
76
+ backgroundColorField ? : string
77
+ /**
78
+ * Layout direction for the bar chart type.
79
+ */
80
+ barDirection ? : 'vertical'|'horizontal'
81
+ /**
82
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
83
+ * hierarchy when triggered.
84
+ * ...
85
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-bubbleEvents)
86
+ */
87
+ bubbleEvents ? : object
88
+ /**
89
+ * Scale factor to apply to the computed size of bubbles in the bubble chart type.
90
+ */
91
+ bubbleScaleFactor ? : number
92
+ /**
93
+ * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
94
+ * ...
95
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-callOnFunctions)
96
+ */
97
+ callOnFunctions ? : Boolean
98
+ /**
99
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
100
+ * application state is undefined. Code which follows the event handler will *not* be executed.
101
+ * ...
102
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-catchEventHandlerExceptions)
103
+ */
104
+ catchEventHandlerExceptions ? : Boolean
105
+ /**
106
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
107
+ * Set to `true` to centre the Widget in browser viewport space.
108
+ */
109
+ centered ? : Boolean
110
+ /**
111
+ * Padding around the entire chart area, in pixels.
112
+ */
113
+ chartPadding ? : object
114
+ /**
115
+ * Chart tooltip configuration object. Configures the tooltip that appears when hovering over chart data points.
116
+ * This follows the Chartjs tooltip configuration specification. This will only be applied if [showTooltips](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#property-showTooltips)
117
+ * is `true`.
118
+ */
119
+ chartTooltip ? : ChartTooltipConfig
120
+ /**
121
+ * Basic type of chart.
122
+ */
123
+ chartType ? : 'line'|'bar'|'pie'|'donut'|'scatter'|'bubble'|'radar'
124
+ /**
125
+ * Custom CSS classes to add to element.
126
+ * May be specified as a space separated string, or as an object in which property names
127
+ * with truthy values are used as the class names:
128
+ * ...
129
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-cls)
130
+ */
131
+ cls ? : string|object
132
+ /**
133
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
134
+ * `style` block.
135
+ * ...
136
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-color)
137
+ */
138
+ color ? : string
139
+ /**
140
+ * Programmatic control over which column to start in when used in a grid layout.
141
+ */
142
+ column ? : number
143
+ config ? : object
144
+ /**
145
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*
146
+ * Element, Widget or Rectangle to which this Widget is constrained.
147
+ */
148
+ constrainTo ? : HTMLElement|Widget|Rectangle
149
+ /**
150
+ * The HTML content that coexists with sibling elements which may have been added to the
151
+ * [contentElement](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.
152
+ * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-htmlCls)
153
+ * class added to its classList, to allow targeted styling.
154
+ */
155
+ content ? : string
156
+ /**
157
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-contentElement).
158
+ * May be specified as a space separated string, or as an object in which property names
159
+ * with truthy values are used as the class names:
160
+ * ...
161
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-contentElementCls)
162
+ */
163
+ contentElementCls ? : string|object
164
+ /**
165
+ * The data records or objects containing data to display in the chart.
166
+ */
167
+ data ? : Model[]|object[]|ModelConfig[]
168
+ /**
169
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
170
+ * field on the expanded record to use for populating this widget's store (if applicable)
171
+ */
172
+ dataField ? : string
173
+ /**
174
+ * The shape to use for data point markers, or `'none'` for no markers.
175
+ */
176
+ dataPointShape ? : 'square'|'circle'|'diamond'|'triangle'|'none'
177
+ /**
178
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
179
+ */
180
+ dataset ? : Record<string, string>
181
+ /**
182
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
183
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
184
+ */
185
+ defaultBindProperty ? : string
186
+ /**
187
+ * A [query](https://bryntum.com/products/chart/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which
188
+ * focus should be directed by default.
189
+ * ...
190
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-defaultFocus)
191
+ * @param {Core.widget.Widget} widget Widget passed to method
192
+ * @returns {boolean} truthy value if widget is the default one
193
+ */
194
+ defaultFocus ? : ((widget: Widget) => Boolean)|string
195
+ /**
196
+ * A config object containing default settings to apply to all child widgets.
197
+ */
198
+ defaults ? : ChartContainerItemConfig
199
+ /**
200
+ * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
201
+ * ...
202
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-detectCSSCompatibilityIssues)
203
+ */
204
+ detectCSSCompatibilityIssues ? : Boolean
205
+ /**
206
+ * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
207
+ * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
208
+ * ...
209
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-disabled)
210
+ */
211
+ disabled ? : Boolean|'inert'
212
+ /**
213
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/chart/docs/api/Core/widget/Panel)
214
+ * [strips collection](https://bryntum.com/products/chart/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
215
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
216
+ * body. Such widgets are called "edge strips".
217
+ * ...
218
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-dock)
219
+ */
220
+ dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
221
+ /**
222
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
223
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
224
+ * property which controls when a drag should start.
225
+ * ...
226
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-draggable)
227
+ */
228
+ draggable ? : Boolean|{
229
+ handleSelector?: string
230
+ }
231
+ /**
232
+ * An object specifying attributes to assign to the root element of this widget.
233
+ * Set `null` value to attribute to remove it.
234
+ * ...
235
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-elementAttributes)
236
+ */
237
+ elementAttributes ? : Record<string, string|null>
238
+ extraData ? : any
239
+ /**
240
+ * The name of the record field containing the data for this series.
241
+ */
242
+ field ? : string
243
+ /**
244
+ * When this widget is a child of a [Container](https://bryntum.com/products/chart/docs/api/Core/widget/Container), it will by default be participating in a
245
+ * flexbox layout. This config allows you to set this widget's
246
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
247
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
248
+ * numeric-only values are interpreted as the `flex-grow` value.
249
+ */
250
+ flex ? : number|string
251
+ /**
252
+ * Set to `true` to move the widget out of the document flow and position it
253
+ * absolutely in browser viewport space.
254
+ */
255
+ floating ? : Boolean
256
+ /**
257
+ * The stroke color used for the grid lines, or `null` for theme default.
258
+ */
259
+ gridColor ? : string
260
+ /**
261
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
262
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
263
+ * cases this config is convenient.
264
+ */
265
+ height ? : string|number
266
+ /**
267
+ * Configure with true to make widget initially hidden.
268
+ */
269
+ hidden ? : Boolean
270
+ /**
271
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
272
+ * ...
273
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-hideAnimation)
274
+ */
275
+ hideAnimation ? : Boolean|object
276
+ /**
277
+ * Specify `true` to make this container hide when it has no visible children (Either empty
278
+ * or all children hidden).
279
+ * ...
280
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-hideWhenEmpty)
281
+ */
282
+ hideWhenEmpty ? : Boolean
283
+ /**
284
+ * The HTML to display initially or a function returning the markup (called at widget construction time).
285
+ * ...
286
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-html)
287
+ * @param {Core.widget.Widget} widget The calling Widget
288
+ * @returns {string}
289
+ */
290
+ html ? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig
291
+ /**
292
+ * The CSS class(es) to add when HTML content is being applied to this widget.
293
+ */
294
+ htmlCls ? : string|object
295
+ /**
296
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
297
+ */
298
+ id ? : string
299
+ /**
300
+ * Determines if the widgets read-only state should be controlled by its parent.
301
+ * ...
302
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-ignoreParentReadOnly)
303
+ */
304
+ ignoreParentReadOnly ? : Boolean
305
+ /**
306
+ * Convenience setting to align input fields of child widgets. By default, the Field input element is
307
+ * placed immediately following the `label`. If you prefer to have all input fields aligned to the
308
+ * right, set this config to `'end'`.
309
+ * ...
310
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-inputFieldAlign)
311
+ */
312
+ inputFieldAlign ? : 'start'|'end'
313
+ /**
314
+ * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
315
+ */
316
+ insertBefore ? : HTMLElement|string
317
+ /**
318
+ * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
319
+ */
320
+ insertFirst ? : HTMLElement|string
321
+ /**
322
+ * Whether to do dynamic highlighting and other interactivity as the mouse cursor moves over the chart.
323
+ */
324
+ interactive ? : Boolean
325
+ /**
326
+ * An optional CSS class to add to child items of this container.
327
+ */
328
+ itemCls ? : string
329
+ /**
330
+ * An object containing typed child widget config objects or Widgets. May also be specified
331
+ * as an array.
332
+ * ...
333
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-items)
334
+ */
335
+ items ? : Record<string, ChartContainerItemConfig|MenuItemEntry>|(ChartContainerItemConfig|MenuItemEntry|Widget)[]
336
+ /**
337
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
338
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
339
+ * are the name of the instance method to call when the keystroke is received.
340
+ * ...
341
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-keyMap)
342
+ */
343
+ keyMap ? : Record<string, KeyMapConfig>
344
+ /**
345
+ * The name of the series to display in the legend.
346
+ */
347
+ label ? : string
348
+ /**
349
+ * Convenience setting to use same label placement on all child widgets.
350
+ * ...
351
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-labelPosition)
352
+ */
353
+ labelPosition ? : 'before'|'above'|'align-before'|'auto'|null
354
+ /**
355
+ * For line and bar charts, this series defines the data values to use as ticks for the x-axis.
356
+ * For pie and donut chart, it defines the data values to use as slice labels.
357
+ */
358
+ labels ? : DataSeries
359
+ /**
360
+ * The short name of a helper class which manages rendering and styling of child items.
361
+ * ...
362
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-layout)
363
+ */
364
+ layout ? : string|ChartContainerLayoutConfig
365
+ /**
366
+ * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-contentElement).
367
+ * ...
368
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-layoutStyle)
369
+ */
370
+ layoutStyle ? : object
371
+ /**
372
+ * An array of [child item](https://bryntum.com/products/chart/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into
373
+ * instances only when this Container is rendered, rather than eagerly at construct time.
374
+ * ...
375
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-lazyItems)
376
+ */
377
+ lazyItems ? : Record<string, ChartContainerItemConfig>|ChartContainerItemConfig[]|Widget[]
378
+ /**
379
+ * Where the chart's legend should appear relative to the main chart content.
380
+ * Options `inline-start` and `inline-end` function as in CSS, with horizontal positioning
381
+ * controlled by RTL mode.
382
+ */
383
+ legendPosition ? : 'top'|'right'|'bottom'|'left'|'inline-start'|'inline-end'
384
+ /**
385
+ * Optional scale factor to increase or decrease the size of the chart legend.
386
+ */
387
+ legendScale ? : number
388
+ /**
389
+ * The listener set for this object.
390
+ * ...
391
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-listeners)
392
+ */
393
+ listeners ? : ChartListeners
394
+ /**
395
+ * A class translations of which are used for translating this entity.
396
+ * This is often used when translations of an item are defined on its container class.
397
+ * For example:
398
+ * ...
399
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-localeClass)
400
+ */
401
+ localeClass ? : typeof Base
402
+ /**
403
+ * Set to `false` to disable localization of this object.
404
+ */
405
+ localizable ? : Boolean
406
+ /**
407
+ * List of properties which values should be translated automatically upon a locale applying.
408
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
409
+ * you could use 'localeKey' meta configuration.
410
+ * Example:
411
+ * ...
412
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-localizableProperties)
413
+ */
414
+ localizableProperties ? : string[]
415
+ /**
416
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
417
+ * numeric-only values are interpreted as pixels.
418
+ */
419
+ margin ? : number|string
420
+ /**
421
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/chart/docs/api/Core/widget/Mask) created for the
422
+ * [masked](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
423
+ * values.
424
+ */
425
+ maskDefaults ? : MaskConfig
426
+ /**
427
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
428
+ * [Mask](https://bryntum.com/products/chart/docs/api/Core/widget/Mask) config object.
429
+ */
430
+ masked ? : Boolean|string|MaskConfig
431
+ /**
432
+ * Max value for the Y axis, for chart types that have one.
433
+ */
434
+ max ? : number
435
+ /**
436
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
437
+ * like [height](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
438
+ */
439
+ maxHeight ? : string|number
440
+ /**
441
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
442
+ * ...
443
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-maximizeOnMobile)
444
+ */
445
+ maximizeOnMobile ? : number|string
446
+ /**
447
+ * The maximum tick rotation in degrees.
448
+ */
449
+ maxTickLabelRotation ? : number
450
+ /**
451
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
452
+ * like [width](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
453
+ */
454
+ maxWidth ? : string|number
455
+ /**
456
+ * Min value for the Y axis, for chart types that have one.
457
+ */
458
+ min ? : number
459
+ /**
460
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
461
+ * like [height](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
462
+ */
463
+ minHeight ? : string|number
464
+ /**
465
+ * The minimum tick rotation in degrees.
466
+ */
467
+ minTickLabelRotation ? : number
468
+ /**
469
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
470
+ * like [width](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
471
+ */
472
+ minWidth ? : string|number
473
+ /**
474
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
475
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
476
+ * layout.
477
+ * ...
478
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-monitorResize)
479
+ */
480
+ monitorResize ? : Boolean|{
481
+ immediate?: Boolean
482
+ }
483
+ /**
484
+ * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/chart/docs/api/Core/widget/Container#config-items)
485
+ * config. For example, a specialized [Menu](https://bryntum.com/products/chart/docs/api/Core/widget/Menu) subclass may have a `namedItems` default
486
+ * value defined like this:
487
+ * ...
488
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-namedItems)
489
+ */
490
+ namedItems ? : Record<string, ChartContainerItemConfig>
491
+ /**
492
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
493
+ * [items](https://bryntum.com/products/chart/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
494
+ * the owner is <strong>always</strong> the encapsulating Container.
495
+ * ...
496
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-owner)
497
+ */
498
+ owner ? : Widget|any
499
+ /**
500
+ * Radius of data points, in pixels.
501
+ */
502
+ pointSize ? : number
503
+ /**
504
+ * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-contentElement), but must
505
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
506
+ * widget's [contentElement](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-contentElement).
507
+ * ...
508
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-positioned)
509
+ */
510
+ positioned ? : Boolean
511
+ /**
512
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
513
+ * menu on click etc, since the tooltip would be displayed at the same time.
514
+ */
515
+ preventTooltipOnTouch ? : Boolean
516
+ /**
517
+ * Whether this widget is read-only. This is only valid if the widget is an input
518
+ * field, <strong>or contains input fields at any depth</strong>.
519
+ * ...
520
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-readOnly)
521
+ */
522
+ readOnly ? : Boolean
523
+ /**
524
+ * [Record](https://bryntum.com/products/chart/docs/api/Core/data/Model) whose values will be used to populate fields in the container.
525
+ * ...
526
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-record)
527
+ */
528
+ record ? : Model
529
+ relayStoreEvents ? : Boolean
530
+ /**
531
+ * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
532
+ * `type`.
533
+ * ...
534
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-rendition)
535
+ */
536
+ rendition ? : string|Record<string, string>|null
537
+ /**
538
+ * Configure as `true` to have the component display a translucent ripple when its
539
+ * [focusElement](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
540
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
541
+ * ...
542
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-ripple)
543
+ */
544
+ ripple ? : Boolean|{
545
+ delegate?: string
546
+ color?: string
547
+ radius?: number
548
+ clip?: string
549
+ }
550
+ /**
551
+ * (Optional) Required when using certain chart types, for example `scatter`, where series can be arbitrarily
552
+ * assigned to different axes. The `role` determines how this series is used in the chart.
553
+ */
554
+ role ? : DataSeriesRole
555
+ /**
556
+ * If you are rendering this widget to a shadow root inside a web component, set this config to the shadowRoot. If not inside a web component, set it to `document.body`
557
+ */
558
+ rootElement ? : ShadowRoot|HTMLElement
559
+ /**
560
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
561
+ * ...
562
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-rtl)
563
+ */
564
+ rtl ? : Boolean
565
+ /**
566
+ * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll
567
+ * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
568
+ * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
569
+ * CSS overflow properties thus:
570
+ * ...
571
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-scrollable)
572
+ */
573
+ scrollable ? : Boolean|ScrollerConfig|Scroller
574
+ /**
575
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
576
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
577
+ */
578
+ scrollAction ? : 'hide'|'realign'|null
579
+ /**
580
+ * One or more data series to display in the chart.
581
+ */
582
+ series ? : DataSeries[]
583
+ /**
584
+ * The type of stroke to use for data series lines.
585
+ */
586
+ seriesLineDash ? : 'dot'|'dash'|'solid'
587
+ /**
588
+ * The opacity of data series lines, from zero to one.
589
+ */
590
+ seriesLineOpacity ? : number
591
+ /**
592
+ * The thickness of data series lines, in pixels.
593
+ */
594
+ seriesLineThickness ? : number
595
+ /**
596
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
597
+ * ...
598
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-showAnimation)
599
+ */
600
+ showAnimation ? : Boolean|object
601
+ /**
602
+ * Whether to show the chart's control button menu, for example, the download button.
603
+ */
604
+ showControls ? : Boolean
605
+ /**
606
+ * Whether to show the chart's legend.
607
+ */
608
+ showLegend ? : Boolean
609
+ /**
610
+ * Whether to show data point markers on the chart.
611
+ */
612
+ showPoints ? : Boolean
613
+ /**
614
+ * Whether to show the chart subtitle.
615
+ */
616
+ showSubtitle ? : Boolean
617
+ /**
618
+ * Whether to show tick marks and labels on the chart axes.
619
+ */
620
+ showTicks ? : Boolean
621
+ /**
622
+ * Whether to show the chart title.
623
+ */
624
+ showTitle ? : Boolean
625
+ /**
626
+ * Whether to show tooltips when the mouse cursor hovers over chart elements.
627
+ */
628
+ showTooltips ? : Boolean
629
+ /**
630
+ * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-disabled)
631
+ */
632
+ showTooltipWhenDisabled ? : Boolean
633
+ /**
634
+ * Programmatic control over how many columns to span when used in a grid layout.
635
+ */
636
+ span ? : number
637
+ /**
638
+ * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/chart/docs/api/Core/widget/Container#config-record),
639
+ * without falling back to `ref`.
640
+ */
641
+ strictRecordMapping ? : Boolean
642
+ /**
643
+ * The chart subtitle.
644
+ */
645
+ subtitle ? : string
646
+ /**
647
+ * The font to use for the chart subtitle.
648
+ * ...
649
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-subtitleFont)
650
+ */
651
+ subtitleFont ? : Font
652
+ /**
653
+ * Padding around the chart subtitle, in pixels.
654
+ */
655
+ subtitlePadding ? : object
656
+ /**
657
+ * A configuration for the [tab](https://bryntum.com/products/chart/docs/api/Core/widget/Tab) created for this widget when it is placed in a
658
+ * [TabPanel](https://bryntum.com/products/chart/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
659
+ * this widget:
660
+ * ...
661
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-tab)
662
+ */
663
+ tab ? : Boolean|TabConfig
664
+ /**
665
+ * When this container is used as a tab in a TabPanel, these items are added to the
666
+ * [TabBar](https://bryntum.com/products/chart/docs/api/Core/widget/TabBar) when this container is the active tab.
667
+ * ...
668
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-tabBarItems)
669
+ */
670
+ tabBarItems ? : ToolbarItems[]|Widget[]
671
+ /**
672
+ * The tag name of this Widget's root element
673
+ */
674
+ tag ? : string
675
+ /**
676
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
677
+ * ...
678
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-textAlign)
679
+ */
680
+ textAlign ? : 'left'|'center'|'right'|'start'|'end'
681
+ /**
682
+ * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`
683
+ * which specifies a default max-width that makes long text more readable.
684
+ * ...
685
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-textContent)
686
+ */
687
+ textContent ? : Boolean
688
+ /**
689
+ * The font to use for tick labels on the chart axes.
690
+ * ...
691
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-tickFont)
692
+ */
693
+ tickFont ? : Font
694
+ /**
695
+ * Set the color of the tick mark lines in the axis area, or `null` to default to [axisColor](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-axisColor).
696
+ */
697
+ tickMarkColor ? : string
698
+ /**
699
+ * The chart title.
700
+ */
701
+ title ? : string
702
+ /**
703
+ * The font to use for the chart title.
704
+ * ...
705
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-titleFont)
706
+ */
707
+ titleFont ? : Font
708
+ /**
709
+ * Padding around the chart title, in pixels.
710
+ */
711
+ titlePadding ? : object
712
+ /**
713
+ * Tooltip for the widget, either as a string or as a Tooltip config object.
714
+ * ...
715
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-tooltip)
716
+ */
717
+ tooltip ? : string|TooltipConfig|null
718
+ type ? : 'chart'
719
+ /**
720
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
721
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
722
+ * values are used as the class names.
723
+ * ...
724
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-ui)
725
+ */
726
+ ui ? : string|object
727
+ /**
728
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/chart/docs/api/Core/widget/Container).
729
+ * Higher weights go further down.
730
+ */
731
+ weight ? : number
732
+ /**
733
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
734
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
735
+ * this config is convenient.
736
+ */
737
+ width ? : string|number
738
+ /**
739
+ * The x position for the widget.
740
+ * ...
741
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-x)
742
+ */
743
+ x ? : number
744
+ /**
745
+ * The y position for the widget.
746
+ * ...
747
+ * [View online docs...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-y)
748
+ */
749
+ y ? : number
750
+
751
+ }