@economic/taco 2.57.0-charts.11 → 2.57.0-charts.12

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/taco.d.ts CHANGED
@@ -163,8 +163,17 @@ export declare interface AreaChartAreaProps<TData extends object> extends ChartC
163
163
  }
164
164
 
165
165
  export declare interface AreaChartProps<TData extends object> extends ChartProps<TData>, default_2.ComponentProps<'div'> {
166
+ /** Show dots for each data point
167
+ * @default false
168
+ */
166
169
  showDots?: boolean;
170
+ /** Stack areas on top of one another, instead of other each other. 'expand' fills the available space
171
+ * @default false
172
+ */
167
173
  stacked?: boolean | 'expand';
174
+ /** Interpolation type of the line
175
+ * @default natural
176
+ */
168
177
  type?: CurveType;
169
178
  }
170
179
 
@@ -240,8 +249,17 @@ export declare interface BarChartBarProps<TData extends object> extends ChartChi
240
249
  }
241
250
 
242
251
  export declare interface BarChartProps<TData extends object> extends ChartProps<TData>, default_2.ComponentProps<'div'> {
243
- layout?: 'horizontal' | 'vertical';
252
+ /** Orientation of the bars
253
+ * @default false
254
+ */
255
+ orientation?: 'horizontal' | 'vertical';
256
+ /** Show bar values as labels next to/inside the bar
257
+ * @default vertical
258
+ */
244
259
  showLabels?: boolean;
260
+ /** Stack bars on top of one another, instead of other each other. 'expand' fills the available space
261
+ * @default false
262
+ */
245
263
  stacked?: boolean | 'expand';
246
264
  }
247
265
 
@@ -451,16 +469,39 @@ declare interface ChartChildProps<TData extends object> {
451
469
  }
452
470
 
453
471
  declare interface ChartProps<TData extends object> {
472
+ /** Data to show in chart, should be an array of objects */
454
473
  data: TData[];
474
+ /** Key in data to use for X Axis */
455
475
  dataKey: keyof TData;
476
+ /** Show a legend below the chart, hidden by default
477
+ * @default false
478
+ */
456
479
  showLegend?: boolean;
480
+ /** Show the X Axis, shown by default
481
+ * @default true
482
+ */
457
483
  showXAxis?: boolean;
484
+ /** Show the Y Axis, shown by default
485
+ * @default false
486
+ */
458
487
  showYAxis?: boolean;
488
+ /** Add a title to the Tooltip show when hovering data */
459
489
  tooltipTitle?: TooltipTitle;
490
+ /**
491
+ * @default auto
492
+ */
460
493
  xAxisScale?: ScaleType | Function;
494
+ /** Format the value shown for each tick on the X Axis */
461
495
  xAxisTickFormatter?: TickFormatter;
496
+ /**
497
+ * @default auto
498
+ */
462
499
  yAxisScale?: ScaleType | Function;
500
+ /** Format the value shown for each tick on the Y Axis */
463
501
  yAxisTickFormatter?: TickFormatter;
502
+ /** Adjust the width of the Y Axis to reduce whitespace
503
+ * @default 55
504
+ */
464
505
  yAxisWidth?: number;
465
506
  }
466
507
 
@@ -1097,6 +1138,9 @@ export declare namespace DonutChart {
1097
1138
  }
1098
1139
 
1099
1140
  export declare interface DonutChartProps<TData extends object> extends Omit<PieChartProps<TData>, 'showLabels'> {
1141
+ /** Show total value in center of Donut
1142
+ * @default false
1143
+ */
1100
1144
  showTotal?: boolean;
1101
1145
  }
1102
1146
 
@@ -1884,7 +1928,13 @@ export declare interface LineChartAreaProps<TData extends object> extends ChartC
1884
1928
  }
1885
1929
 
1886
1930
  export declare interface LineChartProps<TData extends object> extends ChartProps<TData>, default_2.ComponentProps<'div'> {
1931
+ /** Show dots for each data point
1932
+ * @default false
1933
+ */
1887
1934
  showDots?: boolean;
1935
+ /** Interpolation type of the line
1936
+ * @default natural
1937
+ */
1888
1938
  type?: CurveType;
1889
1939
  }
1890
1940
 
@@ -2478,8 +2528,15 @@ export declare namespace PieChart {
2478
2528
  }
2479
2529
 
2480
2530
  export declare interface PieChartProps<TData extends object> extends Pick<ChartProps<TData>, 'showLegend' | 'tooltipTitle'>, default_2.ComponentProps<'div'> {
2531
+ /** Format the displayed value
2532
+ * @default Intl.NumberFormat
2533
+ */
2481
2534
  formatter?: ChartValueFormatter;
2535
+ /** Show labels inside each segment
2536
+ * @default false
2537
+ */
2482
2538
  showLabels?: boolean;
2539
+ /** Text representation of data, used in tooltips and totals */
2483
2540
  unit?: string;
2484
2541
  }
2485
2542
 
package/dist/taco.js CHANGED
@@ -83100,7 +83100,7 @@ function Area(_) {
83100
83100
  AreaChart.Area = Area;
83101
83101
  const BAR_WIDTH = 18;
83102
83102
  function BarChart(props) {
83103
- const isHorizontal = props.layout === "horizontal";
83103
+ const isHorizontal = props.orientation === "horizontal";
83104
83104
  const {
83105
83105
  children,
83106
83106
  className: customClassName,