pace-chart-lib 1.0.7 → 1.0.9

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.
@@ -171,6 +171,7 @@ export declare function getYaxisLabelList(dataMin: number, dataMax: number, axis
171
171
  * @returns {string} A formatted number string based on the given formatting rules.
172
172
  */
173
173
  export declare function getNumberWithFormat(measureValue: number, displayUnits: string, numberFormat: string, decimalPrescision: string, tornadoChart?: boolean): string;
174
+ export declare function getAutoNumberWithFormat(value: any): string;
174
175
  /**
175
176
  * Calculates the dynamic left or right margin size required to accommodate Y-axis labels,
176
177
  * based on the maximum number value, formatting options, and axis type.
@@ -201,6 +202,7 @@ export declare function responsiveYaxisMargin(maxNumber: number, yMax: number, f
201
202
  export declare function responsiveSecondaryYaxisLabel(secondaryYmax: number, secondaryYmin: number, formatOptions: TDefaultChartFormatOptionsType, chartJSON: TChartJSON): {
202
203
  secondaryYAxisLabelArray: any[];
203
204
  secondaryCustomTickValue: number;
205
+ autoLabelFlag: boolean;
204
206
  };
205
207
  /**
206
208
  * Initializes the chart area by appending a <g> element to the given SVG element,
@@ -276,6 +278,7 @@ export declare function isVerticallyOverlapping(obj1: any, obj2: any): boolean;
276
278
  export declare function responsiveYaxisLabel(Ymax: number, Ymin: number, innerHeight: number, formatOptions: TDefaultChartFormatOptionsType, chartJSON: TChartJSON, customYaxisMinValue: number, customYaxisMaxValue: number, barChart?: boolean, innerWidth?: number): {
277
279
  yAxisLabelArray: any[];
278
280
  customTickValue: any;
281
+ autoLabelFlag: boolean;
279
282
  };
280
283
  /**
281
284
  * Calculates a list of nicely spaced numeric labels for an axis given data range and display constraints.
@@ -23,7 +23,7 @@ export declare function getRandomColor(): {
23
23
  *
24
24
  * @return {void} - This function does not return anything. It updates the SVG by rendering legends.
25
25
  */
26
- export declare function drawLegends(height: number, svg: any, maxLegendDimensions: number[], chartTitleHeight: number, width: number, legendMargin: number, formatOptions: TDefaultChartFormatOptionsType, seriesData: TSeries[], chartId: string, legendShape: string): void;
26
+ export declare function drawLegends(height: number, svg: any, maxLegendDimensions: number[], chartTitleHeight: number, width: number, legendMargin: number, formatOptions: TDefaultChartFormatOptionsType, inputSeries: TSeries[], chartId: string, legendShape: string): void;
27
27
  /**
28
28
  * @param {string[]} list - Array of legend strings.
29
29
  * @param {TDefaultChartFormatOptionsType} formatOptions - Chart formatting options including legend font size and family.
@@ -236,3 +236,4 @@ export declare const convertStringToNumber: (value: any) => any;
236
236
  export declare function generalizedChartData(chartData: any, dimensionList?: any): any;
237
237
  export declare const getJQuerySelector: (strSeletor?: string) => string;
238
238
  export declare const connectorNumberFormat: (numerator: any, denominator: any, decimalValues: any, numberFormat: any, x: any, y: any, formatOptions: TDefaultChartFormatOptionsType) => any;
239
+ export declare const getHoverId: (inputText: string) => string;
@@ -564,6 +564,7 @@ export declare const defaultChartFormatOptions: {
564
564
  dataTableNumberFormat: string;
565
565
  dataTableDecimalPrecision: string;
566
566
  dataTableDisplayUnits: string;
567
+ dataTableLabelColor: string;
567
568
  };
568
569
  dataTableOuterBorder: {
569
570
  borderButtonVisibility: boolean;