katucharts.js 0.2.15 → 0.2.16
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/core/Chart.d.ts +3 -1
- package/dist/katucharts.es.js +1 -1
- package/dist/katucharts.umd.js +1 -1
- package/package.json +1 -1
package/dist/core/Chart.d.ts
CHANGED
|
@@ -58,7 +58,9 @@ export declare class Chart {
|
|
|
58
58
|
private static readonly MIN_AUTO_PLOT_HEIGHT;
|
|
59
59
|
/**
|
|
60
60
|
* Hard ceiling for auto-grown height so a chart with extreme fixed overhead
|
|
61
|
-
* (very long rotated labels, large legends) can't expand without bound.
|
|
61
|
+
* (very long rotated labels, large legends) can't expand without bound. Kept
|
|
62
|
+
* compact so a long category list stays a reasonable size and scrolls past it
|
|
63
|
+
* rather than dominating the page.
|
|
62
64
|
*/
|
|
63
65
|
private static readonly MAX_AUTO_HEIGHT;
|
|
64
66
|
/**
|
package/dist/katucharts.es.js
CHANGED
|
@@ -11873,7 +11873,7 @@ const Ln = class Ln {
|
|
|
11873
11873
|
return this.exporter.optionsToExternal();
|
|
11874
11874
|
}
|
|
11875
11875
|
};
|
|
11876
|
-
Ln.MIN_AUTO_PLOT_HEIGHT = 160, Ln.MAX_AUTO_HEIGHT =
|
|
11876
|
+
Ln.MIN_AUTO_PLOT_HEIGHT = 160, Ln.MAX_AUTO_HEIGHT = 450, Ln.MIN_CATEGORY_ROW_HEIGHT = 22;
|
|
11877
11877
|
let Za = Ln;
|
|
11878
11878
|
const vt = 600, Wt = 8, Fd = 0, Qn = vt + 100, Z = 300, Jo = 250, gt = gd, q = gd, B2 = 500;
|
|
11879
11879
|
function Pe(n, t, e, i) {
|