mdt-charts 1.35.0 → 1.35.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/config/config.d.ts
CHANGED
|
@@ -239,7 +239,7 @@ export interface TwoDimGroupingItem {
|
|
|
239
239
|
labels?: TwoDimGroupingItemLabels;
|
|
240
240
|
}
|
|
241
241
|
interface TwoDimGroupingItemData {
|
|
242
|
-
field:
|
|
242
|
+
field: MdtChartsBaseField;
|
|
243
243
|
}
|
|
244
244
|
interface TwoDimGroupingItemLabels {
|
|
245
245
|
position?: ItemPositionByOrientation;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChartOrientation, DiscreteAxisOptions,
|
|
1
|
+
import { ChartOrientation, DiscreteAxisOptions, MdtChartsBaseField, MdtChartsDataRow, TwoDimGroupingOptions } from "../../../../../config/config";
|
|
2
2
|
import { DominantBaseline, Orient, TextAnchor } from "../../../../model";
|
|
3
3
|
export declare class GroupingConfigReader {
|
|
4
4
|
private readonly keyAxisOptions;
|
|
@@ -19,7 +19,7 @@ export declare class GroupingConfigReader {
|
|
|
19
19
|
domain: string[];
|
|
20
20
|
orient: Orient;
|
|
21
21
|
sideIndex: number;
|
|
22
|
-
field:
|
|
22
|
+
field: MdtChartsBaseField;
|
|
23
23
|
textAnchor: TextAnchor;
|
|
24
24
|
dominantBaseline: DominantBaseline;
|
|
25
25
|
}[];
|