@eclipse-scout/chart 24.1.15 → 24.2.0-beta.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.
- package/dist/d.ts/chart/Chart.d.ts +18 -0
- package/dist/d.ts/chart/Chart.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartJsRenderer.d.ts +14 -6
- package/dist/d.ts/chart/ChartJsRenderer.d.ts.map +1 -1
- package/dist/d.ts/chart/ChartLayout.d.ts.map +1 -1
- package/dist/d.ts/table/controls/ChartTableControl.d.ts.map +1 -1
- package/dist/eclipse-scout-chart-8156b4ff3ded6a4a0a51.min.js +3 -0
- package/dist/eclipse-scout-chart-8156b4ff3ded6a4a0a51.min.js.map +1 -0
- package/dist/eclipse-scout-chart-theme-3ac5a1e9bedc33d600c8.min.css +1 -0
- package/dist/eclipse-scout-chart-theme-dark-e9c7a6ec1bc2f34437ba.min.css +1 -0
- package/dist/eclipse-scout-chart-theme-dark.css +7 -4
- package/dist/eclipse-scout-chart-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-chart-theme.css +7 -4
- package/dist/eclipse-scout-chart-theme.css.map +1 -1
- package/dist/eclipse-scout-chart.esm-d6c3855b96d1a2003edc.min.js +3 -0
- package/dist/eclipse-scout-chart.esm-d6c3855b96d1a2003edc.min.js.map +1 -0
- package/dist/eclipse-scout-chart.esm.js +77 -20
- package/dist/eclipse-scout-chart.esm.js.map +1 -1
- package/dist/eclipse-scout-chart.js +75 -19
- package/dist/eclipse-scout-chart.js.map +1 -1
- package/dist/file-list +6 -6
- package/package.json +3 -3
- package/src/chart/Chart.less +9 -5
- package/src/chart/Chart.ts +20 -0
- package/src/chart/ChartJsRenderer.ts +49 -21
- package/src/chart/ChartLayout.ts +11 -3
- package/src/table/controls/ChartTableControl.ts +4 -2
- package/dist/eclipse-scout-chart-2c6ae7947528f036e203.min.js +0 -3
- package/dist/eclipse-scout-chart-2c6ae7947528f036e203.min.js.map +0 -1
- package/dist/eclipse-scout-chart-theme-56ba6667e592ef147869.min.css +0 -1
- package/dist/eclipse-scout-chart-theme-dark-593955eea95984c5aa62.min.css +0 -1
- package/dist/eclipse-scout-chart.esm-25520de13e473a9171b1.min.js +0 -3
- package/dist/eclipse-scout-chart.esm-25520de13e473a9171b1.min.js.map +0 -1
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
* SPDX-License-Identifier: EPL-2.0
|
|
30
30
|
*/
|
|
31
31
|
/*
|
|
32
|
-
* Copyright (c) 2010,
|
|
32
|
+
* Copyright (c) 2010, 2024 BSI Business Systems Integration AG
|
|
33
33
|
*
|
|
34
34
|
* This program and the accompanying materials are made
|
|
35
35
|
* available under the terms of the Eclipse Public License 2.0
|
|
@@ -46,11 +46,14 @@
|
|
|
46
46
|
/* Mixin to define label and grid color */
|
|
47
47
|
}
|
|
48
48
|
/* min-width for charts */
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
.tile > .chart-field {
|
|
50
|
+
overflow: hidden;
|
|
51
|
+
/* use padding area for label, legend */
|
|
52
|
+
}
|
|
53
|
+
.tile > .chart-field > .field.chart {
|
|
51
54
|
overflow: visible;
|
|
52
55
|
}
|
|
53
|
-
.tile > .
|
|
56
|
+
.tile > .chart-field > .field.chart > svg {
|
|
54
57
|
overflow: visible;
|
|
55
58
|
}
|
|
56
59
|
/* increase space between chart and tile-title if available */
|