@reside-ic/skadi-chart 1.1.6 → 1.1.7-alpha.0
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/skadi-chart.d.ts +2 -0
- package/dist/skadi-chart.js +436 -433
- package/dist/skadi-chart.umd.cjs +3 -3
- package/package.json +1 -1
package/dist/skadi-chart.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ declare module "types" {
|
|
|
43
43
|
padding?: number;
|
|
44
44
|
size?: number;
|
|
45
45
|
formatter?: (domainValue: Domain, index: number) => string;
|
|
46
|
+
rotate?: number;
|
|
46
47
|
} & (Domain extends number ? {
|
|
47
48
|
count?: number;
|
|
48
49
|
specifier?: string;
|
|
@@ -147,6 +148,7 @@ declare module "layers/AxesLayer" {
|
|
|
147
148
|
constructor(labels: XYLabel, labelPositions: XY<number>);
|
|
148
149
|
private drawAxis;
|
|
149
150
|
draw: (layerArgs: LayerArgs) => void;
|
|
151
|
+
private rotateTickLabels;
|
|
150
152
|
private drawCategoricalAxis;
|
|
151
153
|
private drawNumericalAxis;
|
|
152
154
|
private drawLinePerpendicularToAxis;
|