@undp/data-viz 0.0.55 → 0.0.56

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 CHANGED
@@ -76924,6 +76924,8 @@ declare interface GroupedBarChartProps {
76924
76924
  minValue?: number;
76925
76925
  /** Truncate labels by specified length */
76926
76926
  truncateBy?: number;
76927
+ /** Toggles if data points which have all the values as undefined or null are filtered out. */
76928
+ filterNA?: boolean;
76927
76929
  /** Reference values for comparison */
76928
76930
  refValues?: ReferenceDataType[];
76929
76931
  /** Number of ticks on the axis */
@@ -79401,6 +79403,8 @@ declare interface Props_4 {
79401
79403
  axisTitle?: string;
79402
79404
  /** Sorting order for data. If this is a number then data is sorted by value at that index x array in the data props. If this is diff then data is sorted by the difference of the last and first element in the x array in the data props. This is overwritten by labelOrder prop */
79403
79405
  sortParameter?: number | 'diff';
79406
+ /** Toggles if data points which have all the values as undefined or null are filtered out. */
79407
+ filterNA?: boolean;
79404
79408
  /** Enable graph download option as png */
79405
79409
  graphDownload?: boolean;
79406
79410
  /** Enable data download option as a csv */
@@ -80946,6 +80950,8 @@ declare interface StackedBarChartProps {
80946
80950
  barAxisTitle?: string;
80947
80951
  /** Parameter to sort the data. If a number is provided, it refers to the index of the size array to determine which value to sort by. If set to total, it sorts by the sum of all the values. */
80948
80952
  sortParameter?: number | 'total';
80953
+ /** Toggles if data points which have all the values as undefined or null are filtered out. */
80954
+ filterNA?: boolean;
80949
80955
  /** Enable graph download option as png */
80950
80956
  graphDownload?: boolean;
80951
80957
  /** Enable data download option as a csv */