@databrainhq/plugin 0.14.47 → 0.14.49
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/dist/consts/metricOptions.d.ts +1 -0
- package/dist/types/app.d.ts +8 -0
- package/dist/webcomponents.es.js +34643 -34147
- package/dist/webcomponents.umd.js +181 -181
- package/package.json +3 -3
package/dist/types/app.d.ts
CHANGED
|
@@ -87,6 +87,12 @@ export type CustomSettings = {
|
|
|
87
87
|
hideYSplitLines?: boolean;
|
|
88
88
|
hideXAxisLines?: boolean;
|
|
89
89
|
hideYAxisLines?: boolean;
|
|
90
|
+
isEnableLabelFormatting?: boolean;
|
|
91
|
+
YaxislabelFormatters?: {
|
|
92
|
+
upperLimit: number;
|
|
93
|
+
lowerLimit: number;
|
|
94
|
+
label: string;
|
|
95
|
+
}[];
|
|
90
96
|
barWidth?: number;
|
|
91
97
|
barRadius?: number[];
|
|
92
98
|
xRotation?: number;
|
|
@@ -244,12 +250,14 @@ export type LabelSettings = {
|
|
|
244
250
|
family?: string;
|
|
245
251
|
weight?: number;
|
|
246
252
|
color?: string;
|
|
253
|
+
axisName?: string;
|
|
247
254
|
};
|
|
248
255
|
YAxisStyle?: {
|
|
249
256
|
size?: number;
|
|
250
257
|
family?: string;
|
|
251
258
|
weight?: number;
|
|
252
259
|
color?: string;
|
|
260
|
+
axisName?: string;
|
|
253
261
|
};
|
|
254
262
|
};
|
|
255
263
|
export type AxisSettings = {
|