@bryntum/chart-angular-thin 7.3.1 → 7.3.2
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.
|
@@ -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
|
/**
|
|
@@ -125,6 +128,7 @@ export type BryntumChartProps = {
|
|
|
125
128
|
* Chart tooltip configuration object. Configures the tooltip that appears when hovering over chart data points.
|
|
126
129
|
* 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
130
|
* is `true`.
|
|
131
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
128
132
|
*/
|
|
129
133
|
chartTooltip ? : ChartTooltipConfig
|
|
130
134
|
/**
|
|
@@ -312,10 +316,14 @@ export type BryntumChartProps = {
|
|
|
312
316
|
inputFieldAlign ? : 'start'|'end'
|
|
313
317
|
/**
|
|
314
318
|
* 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.
|
|
319
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
320
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-insertBefore)
|
|
315
321
|
*/
|
|
316
322
|
insertBefore ? : HTMLElement|string
|
|
317
323
|
/**
|
|
318
324
|
* 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.
|
|
325
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
326
|
+
* [More...](https://bryntum.com/products/chart/docs/api/Chart/widget/Chart#config-insertFirst)
|
|
319
327
|
*/
|
|
320
328
|
insertFirst ? : HTMLElement|string
|
|
321
329
|
/**
|
|
@@ -382,6 +390,7 @@ export type BryntumChartProps = {
|
|
|
382
390
|
legendPosition ? : 'top'|'right'|'bottom'|'left'|'inline-start'|'inline-end'
|
|
383
391
|
/**
|
|
384
392
|
* Optional scale factor to increase or decrease the size of the chart legend.
|
|
393
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
385
394
|
*/
|
|
386
395
|
legendScale ? : number
|
|
387
396
|
/**
|
|
@@ -440,6 +449,7 @@ export type BryntumChartProps = {
|
|
|
440
449
|
maximizeOnMobile ? : number|string
|
|
441
450
|
/**
|
|
442
451
|
* The maximum tick rotation in degrees.
|
|
452
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
443
453
|
*/
|
|
444
454
|
maxTickLabelRotation ? : number
|
|
445
455
|
/**
|
|
@@ -458,6 +468,7 @@ export type BryntumChartProps = {
|
|
|
458
468
|
minHeight ? : string|number
|
|
459
469
|
/**
|
|
460
470
|
* The minimum tick rotation in degrees.
|
|
471
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
461
472
|
*/
|
|
462
473
|
minTickLabelRotation ? : number
|
|
463
474
|
/**
|
|
@@ -626,6 +637,7 @@ export type BryntumChartProps = {
|
|
|
626
637
|
subtitleFont ? : Font
|
|
627
638
|
/**
|
|
628
639
|
* Padding around the chart subtitle, in pixels.
|
|
640
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
629
641
|
*/
|
|
630
642
|
subtitlePadding ? : object
|
|
631
643
|
/**
|
|
@@ -676,6 +688,7 @@ export type BryntumChartProps = {
|
|
|
676
688
|
titleFont ? : Font
|
|
677
689
|
/**
|
|
678
690
|
* Padding around the chart title, in pixels.
|
|
691
|
+
* @deprecated 7.3.0 This field is not supported by AG Charts and has been deprecated
|
|
679
692
|
*/
|
|
680
693
|
titlePadding ? : object
|
|
681
694
|
/**
|