@univerjs-pro/engine-chart 0.10.10-experimental.20251010-3f807c5 → 0.10.10-experimental.20251016-33b0941
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/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/enum.d.ts +2 -1
- package/lib/types/model/chart-model.d.ts +3 -0
- package/lib/types/model/constants/default-chart-style.d.ts +1 -0
- package/lib/types/model/data-context-transformers/box-plot-data-context-transformer.d.ts +3 -0
- package/lib/types/model/mode-converter/converters/boxplot-chart-converter.d.ts +2 -0
- package/lib/types/types.d.ts +1 -0
- package/lib/types/util.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +5 -5
package/lib/types/enum.d.ts
CHANGED
|
@@ -817,6 +817,7 @@ export declare class ChartModel extends Disposable {
|
|
|
817
817
|
circular?: {
|
|
818
818
|
rotateLabel?: boolean | undefined;
|
|
819
819
|
} | undefined;
|
|
820
|
+
nodeShape?: import('..').LinePointShape | undefined;
|
|
820
821
|
} | undefined;
|
|
821
822
|
waterfall?: {
|
|
822
823
|
stackType?: import('..').WaterfallStackTypeEnum | undefined;
|
|
@@ -1979,6 +1980,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1979
1980
|
circular?: {
|
|
1980
1981
|
rotateLabel?: boolean | undefined;
|
|
1981
1982
|
} | undefined;
|
|
1983
|
+
nodeShape?: import('..').LinePointShape | undefined;
|
|
1982
1984
|
} | undefined;
|
|
1983
1985
|
waterfall?: {
|
|
1984
1986
|
stackType?: import('..').WaterfallStackTypeEnum | undefined;
|
|
@@ -3141,6 +3143,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3141
3143
|
circular?: {
|
|
3142
3144
|
rotateLabel?: boolean | undefined;
|
|
3143
3145
|
} | undefined;
|
|
3146
|
+
nodeShape?: import('..').LinePointShape | undefined;
|
|
3144
3147
|
} | undefined;
|
|
3145
3148
|
waterfall?: {
|
|
3146
3149
|
stackType?: import('..').WaterfallStackTypeEnum | undefined;
|
package/lib/types/types.d.ts
CHANGED
package/lib/types/util.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare const chartBitsUtils: {
|
|
|
3
3
|
has(bit: number, attribute: number): boolean;
|
|
4
4
|
baseOn(bit: number, base: number): boolean;
|
|
5
5
|
remove(bit: number, attribute: number): number;
|
|
6
|
-
chartBitToString(bit: ChartTypeBits): "" | "line" | "pie" | "bar" | "scatter" | "radar" | "graph" | "funnel" | "sankey" | "heatmap" | "combination" | "wordCloud";
|
|
6
|
+
chartBitToString(bit: ChartTypeBits): "" | "line" | "pie" | "bar" | "scatter" | "radar" | "graph" | "funnel" | "sankey" | "boxplot" | "heatmap" | "combination" | "wordCloud";
|
|
7
7
|
};
|
|
8
8
|
export declare const setProperty: (data: Record<string, any>, propertyPath: string, value: any) => void;
|
|
9
9
|
/**
|