@univerjs-pro/engine-chart 0.7.0 → 0.8.0-beta.1
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 +3 -1
- package/lib/types/model/chart-model.d.ts +2010 -924
- package/lib/types/model/constants/default-chart-style.d.ts +3 -0
- package/lib/types/model/data-context-transformers/pareto-data-context-transformer.d.ts +3 -0
- package/lib/types/model/mode-converter/converters/pareto-chart-converter.d.ts +2 -0
- package/lib/types/model/mode-converter/render-spec-operators/series-style-operator/pareto-series-style.handler.d.ts +2 -0
- package/lib/types/types.d.ts +4 -0
- package/lib/umd/index.js +1 -1
- package/package.json +6 -5
package/lib/types/types.d.ts
CHANGED
|
@@ -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;
|