pace-chart-lib 1.0.42 → 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.
@@ -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;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
+ declare const ClevelandDotPlot: React.FC<TChartProps>;
4
+ export default ClevelandDotPlot;
@@ -178,6 +178,7 @@ export declare const defaultChartFormatOptions: {
178
178
  gridLinesHorizontal: boolean;
179
179
  gridLinesVertical: boolean;
180
180
  ticksHeight: string;
181
+ ticksWidth: string;
181
182
  gridLinesColor: string;
182
183
  xCoordinate: string;
183
184
  yCoordinate: string;
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";