@univerjs-pro/engine-chart 0.7.0-nightly.202505141607 → 0.7.0-nightly.202505151607

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.
@@ -104,4 +104,7 @@ export declare const defaultChartConfig: {
104
104
  color: string;
105
105
  };
106
106
  };
107
+ pareto: {
108
+ symbolSize: number;
109
+ };
107
110
  };
@@ -0,0 +1,3 @@
1
+ import { ChartModel } from '../chart-model';
2
+ import { ChartTypeBits } from '../../enum';
3
+ export declare const paretoDataContextTransformer: (fromType: ChartTypeBits, toType: ChartTypeBits, model: ChartModel) => void;
@@ -0,0 +1,2 @@
1
+ import { EChartSpec, IChartRenderSpecConverter } from '../../../types';
2
+ export declare const paretoChartConverter: IChartRenderSpecConverter<EChartSpec>;
@@ -0,0 +1,2 @@
1
+ import { EChartRenderSpecOperator } from '../../../../types';
2
+ export declare const paretoSeriesStyleOperator: EChartRenderSpecOperator;
@@ -328,6 +328,10 @@ export interface IChartStyle {
328
328
  indicatorLineColor: string;
329
329
  indicatorLabelTextColor: string;
330
330
  };
331
+ pareto: {
332
+ lineStyle: ISeriesStyle;
333
+ barStyle: ISeriesStyle;
334
+ };
331
335
  }
332
336
  export interface IRelationForceOptions {
333
337
  repulsion?: number;