pace-chart-lib 1.0.79 → 1.0.80

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.
@@ -52,7 +52,7 @@ export declare function calculateMaxLegendWidth(list: string[], formatOptions: T
52
52
  *
53
53
  * @returns {void} This function does not return a value; it appends and updates SVG marker elements in the DOM.
54
54
  */
55
- export declare function lineMarkers(lines: any, chartData: TSeries[], type: any, xScale: any, yScale: any, yScaleRight: any, tooltipHandle: any, formatOptions: TDefaultChartFormatOptionsType, chartJSON: TChartJSON, secondaryCustomYaxisMaxValue: number, secondaryCustomYaxisMinValue: number, customYaxisMinValue: number, customYaxisMaxValue: number, isNormalizedChart: boolean, tooltipFormatter?: TVfxTooltipFormatter): void;
55
+ export declare function lineMarkers(lines: any, chartData: TSeries[], type: any, xScale: any, yScale: any, yScaleRight: any, tooltipHandle: any, formatOptions: TDefaultChartFormatOptionsType, chartJSON: TChartJSON, secondaryCustomYaxisMaxValue: number, secondaryCustomYaxisMinValue: number, customYaxisMinValue: number, customYaxisMaxValue: number, isNormalizedChart: boolean, tooltipFormatter?: TVfxTooltipFormatter, isHorizontalChart?: boolean): void;
56
56
  export declare function Markershapes(Shape: any): d3.SymbolType;
57
57
  /**
58
58
  * Attaches hover interactions to the area chart elements to show markers and tooltips
@@ -69,7 +69,7 @@ export declare function Markershapes(Shape: any): d3.SymbolType;
69
69
  *
70
70
  * @return {void} This function modifies the chart's behavior by adding interactivity but does not return a value.
71
71
  */
72
- export declare function onHoverMarkerForAreaChartFamily(formatOptions: TDefaultChartFormatOptionsType, areas: any, focus: any, filteredDimension: string[], lineData: any[], xScale: any, yScaleLeft: any, chartType: string, isStackChart?: boolean): void;
72
+ export declare function onHoverMarkerForAreaChartFamily(formatOptions: TDefaultChartFormatOptionsType, areas: any, focus: any, filteredDimension: string[], lineData: any[], xScale: any, yScaleLeft: any, chartType: string, isStackChart?: boolean, isHorizontalChart?: boolean): void;
73
73
  /**
74
74
  * Function to calculate actual height, width of content primarily used for margin calculations
75
75
  * @returns { width: 0, height: 0, rotatedWidth: 0, rotatedHeight: 0 }
@@ -621,6 +621,9 @@ export declare const defaultChartFormatOptions: {
621
621
  animationDuration: number;
622
622
  animationEffect: string;
623
623
  };
624
+ swapAxis: {
625
+ swapAxisEnabled: boolean;
626
+ };
624
627
  };
625
628
  export declare const chartMargins: {
626
629
  top: number;