@eclipse-scout/chart 23.1.8 → 23.1.12
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/dist/eclipse-scout-chart-dee874ed46aaa3d247de.min.js.map +1 -1
- package/dist/eclipse-scout-chart-theme-dark.css +1 -1
- package/dist/eclipse-scout-chart-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-chart-theme.css +1 -1
- package/dist/eclipse-scout-chart-theme.css.map +1 -1
- package/dist/eclipse-scout-chart.esm-558d382efe651ca2215b.min.js.map +1 -1
- package/dist/eclipse-scout-chart.esm.js +13 -20
- package/dist/eclipse-scout-chart.esm.js.map +1 -1
- package/dist/eclipse-scout-chart.js +13 -20
- package/dist/eclipse-scout-chart.js.map +1 -1
- package/package.json +3 -3
|
@@ -25,15 +25,13 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
25
25
|
* SPDX-License-Identifier: EPL-2.0
|
|
26
26
|
*/
|
|
27
27
|
class AbstractChartRenderer {
|
|
28
|
-
/** true while this.render() is executing */
|
|
29
|
-
|
|
30
|
-
/** set by render() and remove(), makes it unnecessary to carry an argument through all method calls */
|
|
31
|
-
|
|
32
28
|
constructor(chart) {
|
|
33
29
|
_defineProperty(this, "chart", void 0);
|
|
34
30
|
_defineProperty(this, "session", void 0);
|
|
31
|
+
/** true while this.render() is executing */
|
|
35
32
|
_defineProperty(this, "rendering", void 0);
|
|
36
33
|
_defineProperty(this, "rendered", void 0);
|
|
34
|
+
/** set by render() and remove(), makes it unnecessary to carry an argument through all method calls */
|
|
37
35
|
_defineProperty(this, "animationDuration", void 0);
|
|
38
36
|
_defineProperty(this, "firstOpaqueBackgroundColor", void 0);
|
|
39
37
|
this.chart = chart;
|
|
@@ -204,11 +202,10 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
204
202
|
|
|
205
203
|
|
|
206
204
|
class AbstractSvgChartRenderer extends _index__WEBPACK_IMPORTED_MODULE_2__.AbstractChartRenderer {
|
|
207
|
-
/** Clipping and masking */
|
|
208
|
-
|
|
209
205
|
constructor(chart) {
|
|
210
206
|
super(chart);
|
|
211
207
|
_defineProperty(this, "chartBox", void 0);
|
|
208
|
+
/** Clipping and masking */
|
|
212
209
|
_defineProperty(this, "clipId", void 0);
|
|
213
210
|
_defineProperty(this, "maskId", void 0);
|
|
214
211
|
_defineProperty(this, "suppressLegendBox", void 0);
|
|
@@ -586,14 +583,13 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
586
583
|
|
|
587
584
|
|
|
588
585
|
class Chart extends _eclipse_scout_core__WEBPACK_IMPORTED_MODULE_1__.Widget {
|
|
589
|
-
/** @internal */
|
|
590
|
-
|
|
591
586
|
constructor() {
|
|
592
587
|
super();
|
|
593
588
|
_defineProperty(this, "data", void 0);
|
|
594
589
|
_defineProperty(this, "config", void 0);
|
|
595
590
|
_defineProperty(this, "checkedItems", void 0);
|
|
596
591
|
_defineProperty(this, "chartRenderer", void 0);
|
|
592
|
+
/** @internal */
|
|
597
593
|
_defineProperty(this, "_updatedOnce", void 0);
|
|
598
594
|
_defineProperty(this, "_updateChartTimeoutId", void 0);
|
|
599
595
|
_defineProperty(this, "_updateChartOpts", void 0);
|
|
@@ -3719,25 +3715,22 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
3719
3715
|
|
|
3720
3716
|
|
|
3721
3717
|
class SalesfunnelChartRenderer extends _index__WEBPACK_IMPORTED_MODULE_1__.AbstractSvgChartRenderer {
|
|
3722
|
-
/**
|
|
3723
|
-
* Constants for "normalized mode"
|
|
3724
|
-
* Width of a bar is calculated by multiplying this value with the previous bar's width
|
|
3725
|
-
*/
|
|
3726
|
-
|
|
3727
|
-
/**
|
|
3728
|
-
* Factor to be multiplied with the last bar's width. This will create a funnel effect, because
|
|
3729
|
-
* the last bar is considerably smaller than the other bars.
|
|
3730
|
-
*/
|
|
3731
|
-
|
|
3732
|
-
/** Percentage of the total width the last bar always has (delta might get smaller due to this constraint). */
|
|
3733
|
-
|
|
3734
3718
|
constructor(chart) {
|
|
3735
3719
|
super(chart);
|
|
3736
3720
|
_defineProperty(this, "segmentSelectorForAnimation", void 0);
|
|
3737
3721
|
_defineProperty(this, "widthThresholdMedium", void 0);
|
|
3738
3722
|
_defineProperty(this, "widthThresholdSmall", void 0);
|
|
3723
|
+
/**
|
|
3724
|
+
* Constants for "normalized mode"
|
|
3725
|
+
* Width of a bar is calculated by multiplying this value with the previous bar's width
|
|
3726
|
+
*/
|
|
3739
3727
|
_defineProperty(this, "barDeltaPercentage", void 0);
|
|
3728
|
+
/**
|
|
3729
|
+
* Factor to be multiplied with the last bar's width. This will create a funnel effect, because
|
|
3730
|
+
* the last bar is considerably smaller than the other bars.
|
|
3731
|
+
*/
|
|
3740
3732
|
_defineProperty(this, "lastBarAdditionalPercentage", void 0);
|
|
3733
|
+
/** Percentage of the total width the last bar always has (delta might get smaller due to this constraint). */
|
|
3741
3734
|
_defineProperty(this, "lastBarMinWidthPercentage", void 0);
|
|
3742
3735
|
_defineProperty(this, "paddingBetweenLabel", void 0);
|
|
3743
3736
|
_defineProperty(this, "dataAnalyzeResult", void 0);
|