pace-chart-lib 1.0.8 → 1.0.10
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/HorizontalBarFamily/HorizontalHistogramChart.d.ts +2 -2
- package/dist/Components/Charts/Core/CommonFunctions.d.ts +2 -1
- package/dist/Components/Charts/Core/DefaultProperties.types.d.ts +1 -0
- package/dist/pace-chart-lib.es.js +266 -340
- package/dist/pace-chart-lib.umd.js +266 -340
- package/package.json +1 -1
package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalHistogramChart.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type TChartProps } from "../ChartsWithAxisTypes.types";
|
|
3
|
-
declare const
|
|
4
|
-
export default
|
|
3
|
+
declare const ColumnHistogramChart: React.FC<TChartProps>;
|
|
4
|
+
export default ColumnHistogramChart;
|
|
@@ -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,
|
|
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;
|