@bryntum/chart-angular-thin 7.3.1 → 7.3.3
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/bundles/bryntum-chart-angular-thin.umd.js +4 -4
- package/bundles/bryntum-chart-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-chart.component.js +5 -5
- package/fesm2015/bryntum-chart-angular-thin.js +4 -4
- package/fesm2015/bryntum-chart-angular-thin.js.map +1 -1
- package/lib/bryntum-chart.component.d.ts +23 -7
- package/package.json +1 -1
- package/src/lib/bryntum-chart.component.ts +23 -7
|
@@ -39,6 +39,8 @@ export declare type BryntumChartProps = {
|
|
|
39
39
|
/**
|
|
40
40
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
41
41
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-element).
|
|
42
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-appendTo)
|
|
42
44
|
*/
|
|
43
45
|
appendTo?: HTMLElement | string;
|
|
44
46
|
/**
|
|
@@ -90,6 +92,7 @@ export declare type BryntumChartProps = {
|
|
|
90
92
|
bubbleEvents?: object;
|
|
91
93
|
/**
|
|
92
94
|
* Scale factor to apply to the computed size of bubbles in the bubble chart type.
|
|
95
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
93
96
|
*/
|
|
94
97
|
bubbleScaleFactor?: number;
|
|
95
98
|
/**
|
|
@@ -105,9 +108,10 @@ export declare type BryntumChartProps = {
|
|
|
105
108
|
catchEventHandlerExceptions?: boolean;
|
|
106
109
|
/**
|
|
107
110
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
|
|
108
|
-
*
|
|
111
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-centered)
|
|
112
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
109
113
|
*/
|
|
110
|
-
centered?: boolean;
|
|
114
|
+
centered?: boolean | object;
|
|
111
115
|
/**
|
|
112
116
|
* Padding around the entire chart area, in pixels.
|
|
113
117
|
*/
|
|
@@ -116,6 +120,7 @@ export declare type BryntumChartProps = {
|
|
|
116
120
|
* Chart tooltip configuration object. Configures the tooltip that appears when hovering over chart data points.
|
|
117
121
|
* 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)
|
|
118
122
|
* is `true`.
|
|
123
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
119
124
|
*/
|
|
120
125
|
chartTooltip?: ChartTooltipConfig;
|
|
121
126
|
/**
|
|
@@ -215,7 +220,7 @@ export declare type BryntumChartProps = {
|
|
|
215
220
|
dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
|
|
216
221
|
/**
|
|
217
222
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
|
|
218
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
223
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
219
224
|
* property which controls when a drag should start.
|
|
220
225
|
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-draggable)
|
|
221
226
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -303,10 +308,14 @@ export declare type BryntumChartProps = {
|
|
|
303
308
|
inputFieldAlign?: 'start' | 'end';
|
|
304
309
|
/**
|
|
305
310
|
* 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.
|
|
311
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
312
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-insertBefore)
|
|
306
313
|
*/
|
|
307
314
|
insertBefore?: HTMLElement | string;
|
|
308
315
|
/**
|
|
309
316
|
* 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.
|
|
317
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
318
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-insertFirst)
|
|
310
319
|
*/
|
|
311
320
|
insertFirst?: HTMLElement | string;
|
|
312
321
|
/**
|
|
@@ -345,7 +354,7 @@ export declare type BryntumChartProps = {
|
|
|
345
354
|
*/
|
|
346
355
|
labels?: DataSeries;
|
|
347
356
|
/**
|
|
348
|
-
* Sets `labelWidth
|
|
357
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
349
358
|
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-labelWidth)
|
|
350
359
|
*/
|
|
351
360
|
labelWidth?: number | null;
|
|
@@ -373,6 +382,7 @@ export declare type BryntumChartProps = {
|
|
|
373
382
|
legendPosition?: 'top' | 'right' | 'bottom' | 'left' | 'inline-start' | 'inline-end';
|
|
374
383
|
/**
|
|
375
384
|
* Optional scale factor to increase or decrease the size of the chart legend.
|
|
385
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
376
386
|
*/
|
|
377
387
|
legendScale?: number;
|
|
378
388
|
/**
|
|
@@ -431,6 +441,7 @@ export declare type BryntumChartProps = {
|
|
|
431
441
|
maximizeOnMobile?: number | string;
|
|
432
442
|
/**
|
|
433
443
|
* The maximum tick rotation in degrees.
|
|
444
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
434
445
|
*/
|
|
435
446
|
maxTickLabelRotation?: number;
|
|
436
447
|
/**
|
|
@@ -449,6 +460,7 @@ export declare type BryntumChartProps = {
|
|
|
449
460
|
minHeight?: string | number;
|
|
450
461
|
/**
|
|
451
462
|
* The minimum tick rotation in degrees.
|
|
463
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
452
464
|
*/
|
|
453
465
|
minTickLabelRotation?: number;
|
|
454
466
|
/**
|
|
@@ -541,7 +553,7 @@ export declare type BryntumChartProps = {
|
|
|
541
553
|
scrollable?: boolean | ScrollerConfig | Scroller;
|
|
542
554
|
/**
|
|
543
555
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
544
|
-
* Valid values:
|
|
556
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
545
557
|
*/
|
|
546
558
|
scrollAction?: 'hide' | 'realign' | null;
|
|
547
559
|
/**
|
|
@@ -617,6 +629,7 @@ export declare type BryntumChartProps = {
|
|
|
617
629
|
subtitleFont?: Font;
|
|
618
630
|
/**
|
|
619
631
|
* Padding around the chart subtitle, in pixels.
|
|
632
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
620
633
|
*/
|
|
621
634
|
subtitlePadding?: object;
|
|
622
635
|
/**
|
|
@@ -667,6 +680,7 @@ export declare type BryntumChartProps = {
|
|
|
667
680
|
titleFont?: Font;
|
|
668
681
|
/**
|
|
669
682
|
* Padding around the chart title, in pixels.
|
|
683
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
670
684
|
*/
|
|
671
685
|
titlePadding?: object;
|
|
672
686
|
/**
|
|
@@ -724,7 +738,6 @@ export declare class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
724
738
|
autoUpdateRecord: boolean;
|
|
725
739
|
border: boolean;
|
|
726
740
|
bubbleEvents: object;
|
|
727
|
-
centered: boolean;
|
|
728
741
|
color: Color;
|
|
729
742
|
config: object;
|
|
730
743
|
constrainTo: HTMLElement | Widget | Rectangle;
|
|
@@ -780,6 +793,9 @@ export declare class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
780
793
|
bubbleScaleFactor: number;
|
|
781
794
|
callOnFunctions: boolean;
|
|
782
795
|
catchEventHandlerExceptions: boolean;
|
|
796
|
+
centered: boolean | {
|
|
797
|
+
once?: boolean;
|
|
798
|
+
} | boolean | object;
|
|
783
799
|
chartPadding: object;
|
|
784
800
|
chartTooltip: ChartTooltipConfig;
|
|
785
801
|
chartType: 'line' | 'bar' | 'pie' | 'donut' | 'scatter' | 'bubble' | 'radar';
|
|
@@ -998,5 +1014,5 @@ export declare class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
998
1014
|
*/
|
|
999
1015
|
ngOnDestroy(): void;
|
|
1000
1016
|
static ɵfac: i0.ɵɵFactoryDeclaration<BryntumChartComponent, never>;
|
|
1001
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumChartComponent, "bryntum-chart", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoUpdateRecord": "autoUpdateRecord"; "border": "border"; "bubbleEvents": "bubbleEvents"; "
|
|
1017
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BryntumChartComponent, "bryntum-chart", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoUpdateRecord": "autoUpdateRecord"; "border": "border"; "bubbleEvents": "bubbleEvents"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "defaultFocus": "defaultFocus"; "defaults": "defaults"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "hideAnimation": "hideAnimation"; "hideWhenEmpty": "hideWhenEmpty"; "htmlCls": "htmlCls"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "itemCls": "itemCls"; "lazyItems": "lazyItems"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "monitorResize": "monitorResize"; "namedItems": "namedItems"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tag": "tag"; "textAlign": "textAlign"; "textContent": "textContent"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "animate": "animate"; "animationDuration": "animationDuration"; "appendTo": "appendTo"; "axisColor": "axisColor"; "axisLabelColor": "axisLabelColor"; "background": "background"; "barDirection": "barDirection"; "barWidth": "barWidth"; "bubbleScaleFactor": "bubbleScaleFactor"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "centered": "centered"; "chartPadding": "chartPadding"; "chartTooltip": "chartTooltip"; "chartType": "chartType"; "cls": "cls"; "column": "column"; "content": "content"; "data": "data"; "dataPointShape": "dataPointShape"; "dataset": "dataset"; "disabled": "disabled"; "extraData": "extraData"; "field": "field"; "fillColorField": "fillColorField"; "flex": "flex"; "gridColor": "gridColor"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "interactive": "interactive"; "items": "items"; "keyMap": "keyMap"; "label": "label"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "layout": "layout"; "layoutStyle": "layoutStyle"; "legendPosition": "legendPosition"; "legendScale": "legendScale"; "margin": "margin"; "max": "max"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxTickLabelRotation": "maxTickLabelRotation"; "maxWidth": "maxWidth"; "min": "min"; "minHeight": "minHeight"; "minTickLabelRotation": "minTickLabelRotation"; "minWidth": "minWidth"; "pointSize": "pointSize"; "readOnly": "readOnly"; "record": "record"; "rendition": "rendition"; "role": "role"; "rtl": "rtl"; "scrollable": "scrollable"; "series": "series"; "seriesLineDash": "seriesLineDash"; "seriesLineOpacity": "seriesLineOpacity"; "seriesLineThickness": "seriesLineThickness"; "showControls": "showControls"; "showLegend": "showLegend"; "showPoints": "showPoints"; "showSubtitle": "showSubtitle"; "showTicks": "showTicks"; "showTitle": "showTitle"; "showTooltips": "showTooltips"; "span": "span"; "strictRecordMapping": "strictRecordMapping"; "subtitle": "subtitle"; "subtitleFont": "subtitleFont"; "subtitlePadding": "subtitlePadding"; "tickFont": "tickFont"; "tickMarkColor": "tickMarkColor"; "title": "title"; "titleFont": "titleFont"; "titlePadding": "titlePadding"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "parent": "parent"; "values": "values"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; }, never, never>;
|
|
1002
1018
|
}
|
package/package.json
CHANGED
|
@@ -48,6 +48,8 @@ export type BryntumChartProps = {
|
|
|
48
48
|
/**
|
|
49
49
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
50
50
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#property-element).
|
|
51
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-appendTo)
|
|
51
53
|
*/
|
|
52
54
|
appendTo ? : HTMLElement|string
|
|
53
55
|
/**
|
|
@@ -99,6 +101,7 @@ export type BryntumChartProps = {
|
|
|
99
101
|
bubbleEvents ? : object
|
|
100
102
|
/**
|
|
101
103
|
* Scale factor to apply to the computed size of bubbles in the bubble chart type.
|
|
104
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
102
105
|
*/
|
|
103
106
|
bubbleScaleFactor ? : number
|
|
104
107
|
/**
|
|
@@ -114,9 +117,10 @@ export type BryntumChartProps = {
|
|
|
114
117
|
catchEventHandlerExceptions ? : boolean
|
|
115
118
|
/**
|
|
116
119
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
|
|
117
|
-
*
|
|
120
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-centered)
|
|
121
|
+
* @property {boolean} [once] If `true`, the Widget will be centred on its first show, but if it is moved at runtime, it will opt out of centering for future shows.
|
|
118
122
|
*/
|
|
119
|
-
centered ? : boolean
|
|
123
|
+
centered ? : boolean|object
|
|
120
124
|
/**
|
|
121
125
|
* Padding around the entire chart area, in pixels.
|
|
122
126
|
*/
|
|
@@ -125,6 +129,7 @@ export type BryntumChartProps = {
|
|
|
125
129
|
* Chart tooltip configuration object. Configures the tooltip that appears when hovering over chart data points.
|
|
126
130
|
* 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)
|
|
127
131
|
* is `true`.
|
|
132
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
128
133
|
*/
|
|
129
134
|
chartTooltip ? : ChartTooltipConfig
|
|
130
135
|
/**
|
|
@@ -224,7 +229,7 @@ export type BryntumChartProps = {
|
|
|
224
229
|
dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
|
|
225
230
|
/**
|
|
226
231
|
* *Only valid if this Widget is [floating](https://bryntum.com/products/chart/docs/api/Core/widget/Widget#config-floating).*
|
|
227
|
-
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a
|
|
232
|
+
* Set to `true` to be able to drag a widget freely on the page. Or set to an object with a `handleSelector`
|
|
228
233
|
* property which controls when a drag should start.
|
|
229
234
|
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-draggable)
|
|
230
235
|
* @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
|
|
@@ -312,10 +317,14 @@ export type BryntumChartProps = {
|
|
|
312
317
|
inputFieldAlign ? : 'start'|'end'
|
|
313
318
|
/**
|
|
314
319
|
* 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.
|
|
320
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
321
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-insertBefore)
|
|
315
322
|
*/
|
|
316
323
|
insertBefore ? : HTMLElement|string
|
|
317
324
|
/**
|
|
318
325
|
* 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.
|
|
326
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
327
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-insertFirst)
|
|
319
328
|
*/
|
|
320
329
|
insertFirst ? : HTMLElement|string
|
|
321
330
|
/**
|
|
@@ -354,7 +363,7 @@ export type BryntumChartProps = {
|
|
|
354
363
|
*/
|
|
355
364
|
labels ? : DataSeries
|
|
356
365
|
/**
|
|
357
|
-
* Sets `labelWidth
|
|
366
|
+
* Sets `labelWidth` for all children of this Container, that do not define their own `labelWidth`.
|
|
358
367
|
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-labelWidth)
|
|
359
368
|
*/
|
|
360
369
|
labelWidth ? : number|null
|
|
@@ -382,6 +391,7 @@ export type BryntumChartProps = {
|
|
|
382
391
|
legendPosition ? : 'top'|'right'|'bottom'|'left'|'inline-start'|'inline-end'
|
|
383
392
|
/**
|
|
384
393
|
* Optional scale factor to increase or decrease the size of the chart legend.
|
|
394
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
385
395
|
*/
|
|
386
396
|
legendScale ? : number
|
|
387
397
|
/**
|
|
@@ -440,6 +450,7 @@ export type BryntumChartProps = {
|
|
|
440
450
|
maximizeOnMobile ? : number|string
|
|
441
451
|
/**
|
|
442
452
|
* The maximum tick rotation in degrees.
|
|
453
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
443
454
|
*/
|
|
444
455
|
maxTickLabelRotation ? : number
|
|
445
456
|
/**
|
|
@@ -458,6 +469,7 @@ export type BryntumChartProps = {
|
|
|
458
469
|
minHeight ? : string|number
|
|
459
470
|
/**
|
|
460
471
|
* The minimum tick rotation in degrees.
|
|
472
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
461
473
|
*/
|
|
462
474
|
minTickLabelRotation ? : number
|
|
463
475
|
/**
|
|
@@ -550,7 +562,7 @@ export type BryntumChartProps = {
|
|
|
550
562
|
scrollable ? : boolean|ScrollerConfig|Scroller
|
|
551
563
|
/**
|
|
552
564
|
* Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
|
|
553
|
-
* Valid values:
|
|
565
|
+
* Valid values: `null`: do nothing, `hide`: hide the widget or `realign`: realign to the target if possible.
|
|
554
566
|
*/
|
|
555
567
|
scrollAction ? : 'hide'|'realign'|null
|
|
556
568
|
/**
|
|
@@ -626,6 +638,7 @@ export type BryntumChartProps = {
|
|
|
626
638
|
subtitleFont ? : Font
|
|
627
639
|
/**
|
|
628
640
|
* Padding around the chart subtitle, in pixels.
|
|
641
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
629
642
|
*/
|
|
630
643
|
subtitlePadding ? : object
|
|
631
644
|
/**
|
|
@@ -676,6 +689,7 @@ export type BryntumChartProps = {
|
|
|
676
689
|
titleFont ? : Font
|
|
677
690
|
/**
|
|
678
691
|
* Padding around the chart title, in pixels.
|
|
692
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
679
693
|
*/
|
|
680
694
|
titlePadding ? : object
|
|
681
695
|
/**
|
|
@@ -899,7 +913,6 @@ export class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
899
913
|
'autoUpdateRecord',
|
|
900
914
|
'border',
|
|
901
915
|
'bubbleEvents',
|
|
902
|
-
'centered',
|
|
903
916
|
'color',
|
|
904
917
|
'config',
|
|
905
918
|
'constrainTo',
|
|
@@ -958,6 +971,7 @@ export class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
958
971
|
'bubbleScaleFactor',
|
|
959
972
|
'callOnFunctions',
|
|
960
973
|
'catchEventHandlerExceptions',
|
|
974
|
+
'centered',
|
|
961
975
|
'chartPadding',
|
|
962
976
|
'chartTooltip',
|
|
963
977
|
'chartType',
|
|
@@ -1062,7 +1076,6 @@ export class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
1062
1076
|
@Input() autoUpdateRecord ! : boolean;
|
|
1063
1077
|
@Input() border ! : boolean;
|
|
1064
1078
|
@Input() bubbleEvents ! : object;
|
|
1065
|
-
@Input() centered ! : boolean;
|
|
1066
1079
|
@Input() color ! : Color;
|
|
1067
1080
|
@Input() config ! : object;
|
|
1068
1081
|
@Input() constrainTo ! : HTMLElement|Widget|Rectangle;
|
|
@@ -1120,6 +1133,9 @@ export class BryntumChartComponent implements OnInit, OnDestroy {
|
|
|
1120
1133
|
@Input() bubbleScaleFactor ! : number;
|
|
1121
1134
|
@Input() callOnFunctions ! : boolean;
|
|
1122
1135
|
@Input() catchEventHandlerExceptions ! : boolean;
|
|
1136
|
+
@Input() centered ! : boolean|{
|
|
1137
|
+
once?: boolean
|
|
1138
|
+
}|boolean|object;
|
|
1123
1139
|
@Input() chartPadding ! : object;
|
|
1124
1140
|
@Input() chartTooltip ! : ChartTooltipConfig;
|
|
1125
1141
|
@Input() chartType ! : 'line'|'bar'|'pie'|'donut'|'scatter'|'bubble'|'radar';
|