@eclipse-scout/chart 23.1.8 → 23.1.11
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
|
@@ -27,15 +27,13 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
27
27
|
* SPDX-License-Identifier: EPL-2.0
|
|
28
28
|
*/
|
|
29
29
|
class AbstractChartRenderer {
|
|
30
|
-
/** true while this.render() is executing */
|
|
31
|
-
|
|
32
|
-
/** set by render() and remove(), makes it unnecessary to carry an argument through all method calls */
|
|
33
|
-
|
|
34
30
|
constructor(chart) {
|
|
35
31
|
_defineProperty(this, "chart", void 0);
|
|
36
32
|
_defineProperty(this, "session", void 0);
|
|
33
|
+
/** true while this.render() is executing */
|
|
37
34
|
_defineProperty(this, "rendering", void 0);
|
|
38
35
|
_defineProperty(this, "rendered", void 0);
|
|
36
|
+
/** set by render() and remove(), makes it unnecessary to carry an argument through all method calls */
|
|
39
37
|
_defineProperty(this, "animationDuration", void 0);
|
|
40
38
|
_defineProperty(this, "firstOpaqueBackgroundColor", void 0);
|
|
41
39
|
this.chart = chart;
|
|
@@ -205,11 +203,10 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
205
203
|
|
|
206
204
|
|
|
207
205
|
class AbstractSvgChartRenderer extends _index__WEBPACK_IMPORTED_MODULE_2__.AbstractChartRenderer {
|
|
208
|
-
/** Clipping and masking */
|
|
209
|
-
|
|
210
206
|
constructor(chart) {
|
|
211
207
|
super(chart);
|
|
212
208
|
_defineProperty(this, "chartBox", void 0);
|
|
209
|
+
/** Clipping and masking */
|
|
213
210
|
_defineProperty(this, "clipId", void 0);
|
|
214
211
|
_defineProperty(this, "maskId", void 0);
|
|
215
212
|
_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);
|
|
@@ -3713,25 +3709,22 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
3713
3709
|
|
|
3714
3710
|
|
|
3715
3711
|
class SalesfunnelChartRenderer extends _index__WEBPACK_IMPORTED_MODULE_1__.AbstractSvgChartRenderer {
|
|
3716
|
-
/**
|
|
3717
|
-
* Constants for "normalized mode"
|
|
3718
|
-
* Width of a bar is calculated by multiplying this value with the previous bar's width
|
|
3719
|
-
*/
|
|
3720
|
-
|
|
3721
|
-
/**
|
|
3722
|
-
* Factor to be multiplied with the last bar's width. This will create a funnel effect, because
|
|
3723
|
-
* the last bar is considerably smaller than the other bars.
|
|
3724
|
-
*/
|
|
3725
|
-
|
|
3726
|
-
/** Percentage of the total width the last bar always has (delta might get smaller due to this constraint). */
|
|
3727
|
-
|
|
3728
3712
|
constructor(chart) {
|
|
3729
3713
|
super(chart);
|
|
3730
3714
|
_defineProperty(this, "segmentSelectorForAnimation", void 0);
|
|
3731
3715
|
_defineProperty(this, "widthThresholdMedium", void 0);
|
|
3732
3716
|
_defineProperty(this, "widthThresholdSmall", void 0);
|
|
3717
|
+
/**
|
|
3718
|
+
* Constants for "normalized mode"
|
|
3719
|
+
* Width of a bar is calculated by multiplying this value with the previous bar's width
|
|
3720
|
+
*/
|
|
3733
3721
|
_defineProperty(this, "barDeltaPercentage", void 0);
|
|
3722
|
+
/**
|
|
3723
|
+
* Factor to be multiplied with the last bar's width. This will create a funnel effect, because
|
|
3724
|
+
* the last bar is considerably smaller than the other bars.
|
|
3725
|
+
*/
|
|
3734
3726
|
_defineProperty(this, "lastBarAdditionalPercentage", void 0);
|
|
3727
|
+
/** Percentage of the total width the last bar always has (delta might get smaller due to this constraint). */
|
|
3735
3728
|
_defineProperty(this, "lastBarMinWidthPercentage", void 0);
|
|
3736
3729
|
_defineProperty(this, "paddingBetweenLabel", void 0);
|
|
3737
3730
|
_defineProperty(this, "dataAnalyzeResult", void 0);
|