@univerjs-pro/engine-chart 0.10.9 → 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.
@@ -75,7 +75,8 @@ export declare enum ChartTypeBits {
75
75
  Pareto = 16384,
76
76
  /** Sankey chart */
77
77
  Sankey = 32768,
78
- Heatmap = 65536
78
+ Heatmap = 65536,
79
+ Boxplot = 131072
79
80
  }
80
81
  export declare enum CategoryType {
81
82
  Linear = "Linear",
@@ -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;
@@ -95,6 +95,7 @@ export declare const defaultChartConfig: {
95
95
  rotateLabel: boolean;
96
96
  };
97
97
  emphasis: boolean;
98
+ nodeShape: LinePointShape;
98
99
  };
99
100
  tooltipAxisLabelBackground: string;
100
101
  tooltipAxisLabelColor: string;
@@ -0,0 +1,3 @@
1
+ import { ChartModel } from '../chart-model';
2
+ import { ChartTypeBits } from '../../enum';
3
+ export declare const BoxplotDataContextTransformer: (fromType: ChartTypeBits, toType: ChartTypeBits, model: ChartModel) => void;
@@ -0,0 +1,2 @@
1
+ import { EChartSpec, IChartRenderSpecConverter } from '../../../types';
2
+ export declare const boxplotChartConverter: IChartRenderSpecConverter<EChartSpec>;
@@ -345,6 +345,7 @@ export interface IChartStyle {
345
345
  circular: {
346
346
  rotateLabel: boolean;
347
347
  };
348
+ nodeShape: LinePointShape;
348
349
  };
349
350
  waterfall: {
350
351
  stackType: WaterfallStackTypeEnum;
@@ -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
  /**