pace-chart-lib 1.0.43 → 1.0.44
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 -0
- package/dist/Components/Charts/ChartsWithAxis/ChartsWithAxisTypes.types.d.ts +2 -1
- package/dist/Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/ClevelandDotPlot.d.ts +4 -0
- package/dist/Components/Charts/Core/DefaultProperties.types.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/pace-chart-lib.es.js +979 -101
- package/dist/pace-chart-lib.umd.js +979 -101
- package/package.json +1 -1
|
@@ -625,3 +625,4 @@ export declare const horizontalScrollBar: (seriesData: any, height: any, width:
|
|
|
625
625
|
export declare function addTotalValue(totalValueMap: Map<string, number>, xScale: any, yScale: any, margin: TMargin, d3Annotation: any, oldAnnotationList: any[], formatOptions: TDefaultChartFormatOptionsType, chartType: string, height: number, width: number, svg: any, isReportEditable?: boolean, isBarChart?: boolean): void;
|
|
626
626
|
export declare function createTotalMeasureValueMap(data: TData, totalValueMap: Map<string, number>, filteredDimension: string[]): void;
|
|
627
627
|
export declare function getVerticalGridLinesTickSize(formatOptions: TDefaultChartFormatOptionsType, innerHeight: number, dataTableHeight: number, shouldAdjustForAxisPosition?: boolean): number;
|
|
628
|
+
export declare function getHorizontalGridLinesTickSize(formatOptions: TDefaultChartFormatOptionsType, innerWidth: number, seriesLabelWidth?: number): number;
|
|
@@ -45,7 +45,8 @@ export declare enum chartTypes {
|
|
|
45
45
|
CombinationLine = "CombinationLine",
|
|
46
46
|
CombinationArea = "CombinationArea",
|
|
47
47
|
CombinationStackArea = "CombinationStackArea",
|
|
48
|
-
TornadoDefaultEntry = "defaultEntry"
|
|
48
|
+
TornadoDefaultEntry = "defaultEntry",
|
|
49
|
+
ClevelandDotPlot = "ClevelandDotPlot"
|
|
49
50
|
}
|
|
50
51
|
export type TChartProps = {
|
|
51
52
|
data: TData;
|
package/dist/index.d.ts
CHANGED
|
@@ -33,3 +33,4 @@ export { default as BubbleChart } from "./Components/Charts/ChartsWithoutAxis/Ot
|
|
|
33
33
|
export { default as ScatterChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/ScatterChart";
|
|
34
34
|
export { default as WaterfallChart } from "./Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/WaterfallChart";
|
|
35
35
|
export { default as TornadoChart } from "./Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/TornadoChart";
|
|
36
|
+
export { default as ClevelandDotPlot } from "./Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/ClevelandDotPlot";
|