@devtable/dashboard 7.1.0 → 7.2.0
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.
|
@@ -103,6 +103,7 @@ export declare function getOption(conf: IParetoChartConf, data: $TSFixMe[], _var
|
|
|
103
103
|
series: ({
|
|
104
104
|
name: string;
|
|
105
105
|
type: string;
|
|
106
|
+
barMaxWidth: number;
|
|
106
107
|
itemStyle: {
|
|
107
108
|
color: string;
|
|
108
109
|
};
|
|
@@ -158,6 +159,7 @@ export declare function getOption(conf: IParetoChartConf, data: $TSFixMe[], _var
|
|
|
158
159
|
};
|
|
159
160
|
}[];
|
|
160
161
|
};
|
|
162
|
+
barMaxWidth?: undefined;
|
|
161
163
|
})[];
|
|
162
164
|
grid: {
|
|
163
165
|
top: number;
|
|
@@ -5,6 +5,7 @@ import { TParetoFormatters } from './utils';
|
|
|
5
5
|
export declare function getSeries(conf: IParetoChartConf, data: AnyObject[], formatters: TParetoFormatters): ({
|
|
6
6
|
name: string;
|
|
7
7
|
type: string;
|
|
8
|
+
barMaxWidth: number;
|
|
8
9
|
itemStyle: {
|
|
9
10
|
color: string;
|
|
10
11
|
};
|
|
@@ -60,4 +61,5 @@ export declare function getSeries(conf: IParetoChartConf, data: AnyObject[], for
|
|
|
60
61
|
};
|
|
61
62
|
}[];
|
|
62
63
|
};
|
|
64
|
+
barMaxWidth?: undefined;
|
|
63
65
|
})[];
|