@apia/charts 0.3.2 → 0.3.4
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/index.d.ts +19 -11
- package/dist/index.js +570 -420
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -38,9 +38,10 @@ type TApiaChartColumn = {
|
|
|
38
38
|
name: string;
|
|
39
39
|
};
|
|
40
40
|
type TApiaChartDefinition = {
|
|
41
|
-
chartType
|
|
42
|
-
axisXTitle
|
|
43
|
-
axisYTitle
|
|
41
|
+
chartType?: 'barH2D' | 'barV2D' | 'linear' | 'waterfall' | 'pie2D';
|
|
42
|
+
axisXTitle?: string;
|
|
43
|
+
axisYTitle?: string;
|
|
44
|
+
hideSelector?: boolean;
|
|
44
45
|
/**
|
|
45
46
|
* The colors of the waterfall chart are defined by the bars with positive
|
|
46
47
|
* values and the bars with negative values. So in order to mantain cohesion
|
|
@@ -56,7 +57,7 @@ type TApiaChartDefinition = {
|
|
|
56
57
|
/**
|
|
57
58
|
* Name of the schema of colors shown in the chart. Pie charts must always include a schema
|
|
58
59
|
*/
|
|
59
|
-
colorSchema
|
|
60
|
+
colorSchema?: string;
|
|
60
61
|
/**
|
|
61
62
|
* Main data to be parsed and shown in the chart.
|
|
62
63
|
* Depending on the ```chartType``` and the amount of ```column``` objects,
|
|
@@ -145,12 +146,18 @@ type TApiaChartDefinition = {
|
|
|
145
146
|
dataSets: {
|
|
146
147
|
data: TApiaChartColumn | TApiaChartColumn[];
|
|
147
148
|
};
|
|
149
|
+
margin?: {
|
|
150
|
+
top: number;
|
|
151
|
+
left: number;
|
|
152
|
+
bottom: number;
|
|
153
|
+
right: number;
|
|
154
|
+
} | number;
|
|
148
155
|
pnl_id?: string;
|
|
149
|
-
showAxisXTitle
|
|
150
|
-
showAxisYTitle
|
|
151
|
-
showGrid
|
|
152
|
-
showLegend
|
|
153
|
-
showValues
|
|
156
|
+
showAxisXTitle?: boolean;
|
|
157
|
+
showAxisYTitle?: boolean;
|
|
158
|
+
showGrid?: boolean;
|
|
159
|
+
showLegend?: boolean;
|
|
160
|
+
showValues?: boolean;
|
|
154
161
|
/**
|
|
155
162
|
* Specific for waterfall charts to show the total sum of the values of the
|
|
156
163
|
* chart at the end while each column shows its value. Otherwise the values
|
|
@@ -235,8 +242,9 @@ type TWidgetData = {
|
|
|
235
242
|
};
|
|
236
243
|
};
|
|
237
244
|
|
|
238
|
-
declare const WidgetContainer: ({ data }: {
|
|
245
|
+
declare const WidgetContainer: ({ data, id }: {
|
|
239
246
|
data: TWidgetData;
|
|
240
|
-
|
|
247
|
+
id: string;
|
|
248
|
+
}) => React$1.JSX.Element;
|
|
241
249
|
|
|
242
250
|
export { ChartRenderer, EmptyGrid, TApiaChartColumn, TApiaChartDefinition, TWidgetData, WidgetContainer };
|