pace-chart-lib 1.0.25 → 1.0.26
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/Components/Charts/ChartsWithAxis/ChartsWithAxisFunctions.d.ts +1 -1
- package/dist/Components/Charts/Core/Common.types.d.ts +1 -1
- package/dist/Components/Charts/Core/CommonFunctions.d.ts +1 -1
- package/dist/pace-chart-lib.es.js +250 -75
- package/dist/pace-chart-lib.umd.js +250 -75
- package/package.json +1 -1
|
@@ -499,7 +499,7 @@ export declare const dataTablePreCalculation: (formatOptions: TDefaultChartForma
|
|
|
499
499
|
* @param {Function} getBarColor - Function to get bar colors.
|
|
500
500
|
* @param {boolean} isColorScaleApplied - Flag indicating if color scaling is applied.
|
|
501
501
|
* @param {number} dataTableHeight - Total height reserved for the data table.
|
|
502
|
-
* @param {string} chartType - Type of chart (e.g.,
|
|
502
|
+
* @param {string} chartType - Type of chart (e.g., chartTypes.LineChart, "stackColumn").
|
|
503
503
|
* @param {TDefaultChartFormatOptionsType} formatOptions - Formatting options for chart and data table.
|
|
504
504
|
* @param {number} yLabel - Space allocated for y-axis labels.
|
|
505
505
|
* @param {number} yTitle - Space allocated for y-axis title.
|
|
@@ -67,7 +67,7 @@ export declare function lineMarkers(lines: any, chartData: TSeries[], type: any,
|
|
|
67
67
|
*
|
|
68
68
|
* @return {void} This function modifies the chart's behavior by adding interactivity but does not return a value.
|
|
69
69
|
*/
|
|
70
|
-
export declare function onHoverMarkerForAreaChartFamily(formatOptions: TDefaultChartFormatOptionsType, areas: any, focus: any, filteredDimension: string[], lineData: any[], xScale: any, yScaleLeft: any, chartType: string): void;
|
|
70
|
+
export declare function onHoverMarkerForAreaChartFamily(formatOptions: TDefaultChartFormatOptionsType, areas: any, focus: any, filteredDimension: string[], lineData: any[], xScale: any, yScaleLeft: any, chartType: string, isStackChart?: boolean): void;
|
|
71
71
|
/**
|
|
72
72
|
* Function to calculate actual height, width of content primarily used for margin calculations
|
|
73
73
|
* @returns { width: 0, height: 0, rotatedWidth: 0, rotatedHeight: 0 }
|