gifted-charts-core 0.1.52 → 0.1.54

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.
@@ -80,7 +80,6 @@ export var useRenderStackBars = function (props) {
80
80
  item.stacks.forEach(function (_, ind) {
81
81
  var value = _.value;
82
82
  sum += value > 0 ? getBarHeight(value, _.marginBottom) : 0;
83
- console.log(ind, sum);
84
83
  });
85
84
  return sum;
86
85
  };
@@ -309,7 +309,7 @@ export declare const useLineChart: (props: extendedLineChartPropsType) => {
309
309
  };
310
310
  addLeadingAndTrailingPathForAreaFill: (initialPath: string, value: number, dataLength: number) => string;
311
311
  getNextPoint: (data: lineDataItemNullSafe[], index: number, around: boolean, before: boolean, spacingArray: number[]) => string;
312
- getStepPath: (data: lineDataItemNullSafe[], i: number, spacingArray: number[]) => string;
312
+ getStepPath: (data: lineDataItemNullSafe[], i: number, spacingArray: number[], lineSegment: LineSegment[] | undefined) => string;
313
313
  getSegmentPath: (data: lineDataItemNullSafe[], i: number, lineSegment: LineSegment[] | undefined, startIndex: number, endIndex: number, spacingArray: number[], isSecondary?: boolean) => string;
314
314
  gradientDirection: string;
315
315
  horizSections: {