pace-chart-lib 1.0.16 → 1.0.19

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.
Files changed (50) hide show
  1. package/package.json +2 -2
  2. package/dist/Components/Charts/ChartsWithAxis/AreaFamily/AreaChart.d.ts +0 -4
  3. package/dist/Components/Charts/ChartsWithAxis/AreaFamily/NormalizedStackAreaChart.d.ts +0 -4
  4. package/dist/Components/Charts/ChartsWithAxis/AreaFamily/StackAreaChart.d.ts +0 -4
  5. package/dist/Components/Charts/ChartsWithAxis/ChartsWithAxisFunctions.d.ts +0 -667
  6. package/dist/Components/Charts/ChartsWithAxis/ChartsWithAxisTypes.types.d.ts +0 -171
  7. package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/ColumnChart.d.ts +0 -4
  8. package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/ColumnHistogramChart.d.ts +0 -4
  9. package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/CustomColumnChart.d.ts +0 -4
  10. package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/LayeredColumnChart.d.ts +0 -4
  11. package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/NormalizedStackColumnChart.d.ts +0 -4
  12. package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/StackColumnChart.d.ts +0 -4
  13. package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalBarChart.d.ts +0 -4
  14. package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalHistogramChart.d.ts +0 -4
  15. package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/LayeredHorizontalBarChart.d.ts +0 -4
  16. package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/NormalizedStackHorizontalBarChart.d.ts +0 -4
  17. package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/StackHorizontalBarChart.d.ts +0 -4
  18. package/dist/Components/Charts/ChartsWithAxis/LineFamily/LineChart.d.ts +0 -4
  19. package/dist/Components/Charts/ChartsWithAxis/LineFamily/NormalizedStackLineChart.d.ts +0 -4
  20. package/dist/Components/Charts/ChartsWithAxis/LineFamily/StackLineChart.d.ts +0 -4
  21. package/dist/Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/TornadoChart.d.ts +0 -4
  22. package/dist/Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/WaterfallChart.d.ts +0 -4
  23. package/dist/Components/Charts/ChartsWithoutAxis/ChartsWithoutAxisFunctions.d.ts +0 -92
  24. package/dist/Components/Charts/ChartsWithoutAxis/ChartsWithoutAxisTypes.types.d.ts +0 -111
  25. package/dist/Components/Charts/ChartsWithoutAxis/Maps/Cordinates.d.ts +0 -26
  26. package/dist/Components/Charts/ChartsWithoutAxis/Maps/Maps.d.ts +0 -4
  27. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/BubbleChart.d.ts +0 -4
  28. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/OrganizationChart.d.ts +0 -4
  29. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/ProgressChart.d.ts +0 -3
  30. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/PyramidChart.d.ts +0 -3
  31. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/RadialBarChart.d.ts +0 -4
  32. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/SankeyChart.d.ts +0 -4
  33. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/ScatterChart.d.ts +0 -4
  34. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/Speedometer.d.ts +0 -3
  35. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/VennChart.d.ts +0 -4
  36. package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/WordCloud.d.ts +0 -4
  37. package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/DonutChart.d.ts +0 -4
  38. package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/PieChart.d.ts +0 -4
  39. package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/PieFamilyCommonFunctions.d.ts +0 -10
  40. package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/PieofPieChart.d.ts +0 -3
  41. package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/TreemapChart.d.ts +0 -3
  42. package/dist/Components/Charts/Core/Common.types.d.ts +0 -370
  43. package/dist/Components/Charts/Core/CommonFunctions.d.ts +0 -240
  44. package/dist/Components/Charts/Core/DefaultChartDataProperties.d.ts +0 -65
  45. package/dist/Components/Charts/Core/DefaultProperties.types.d.ts +0 -595
  46. package/dist/Services/ErrorLog.d.ts +0 -1
  47. package/dist/index.d.ts +0 -35
  48. package/dist/pace-chart-lib.es.js +0 -54362
  49. package/dist/pace-chart-lib.umd.js +0 -54365
  50. package/dist/vite.svg +0 -1
@@ -1,171 +0,0 @@
1
- import { TData } from "../Core/Common.types";
2
- import type { TDefaultChartFormatOptionsType } from "../Core/DefaultProperties.types";
3
- export type TMargin = {
4
- top: number;
5
- left: number;
6
- right: number;
7
- bottom: number;
8
- };
9
- export declare enum actualChartTypes {
10
- waterfall = "Waterfall",
11
- lineWithMarker = "LineWithMarker",
12
- stackLine = "StackLine",
13
- stackLine100 = "100StackLine",
14
- line = "Line",
15
- bar = "Bar",
16
- stackColumn = "StackColumn",
17
- area = "Area",
18
- pie = "Pie",
19
- sankey = "Sankey",
20
- sunburst = "Sunburst",
21
- horizontalBar = "HorizontalBar",
22
- stackArea = "StackArea",
23
- stackArea100 = "100StackArea",
24
- treeMap = "TreeMap",
25
- stackBar = "StackBar",
26
- stackColumn100 = "100StackColumn",
27
- stackBar100 = "100StackBar",
28
- scatterPlot = "ScatterPlot",
29
- customColumnChart = "CustomColumnChart",
30
- customBarChart = "CustomBarChart",
31
- histogram = "Histogram",
32
- columnHistogram = "ColumnHistogram",
33
- barHistogram = "BarHistogram",
34
- column = "Column",
35
- miscellaneous = "Miscellaneous",
36
- custom = "Custom",
37
- collapsableTree = "CollapsableTree",
38
- maps = "Maps",
39
- tornadoChart = "Tornado",
40
- pieOfPie = "PieOfPie",
41
- wordCloud = "WordCloud",
42
- boxPlot = "BoxPlot",
43
- bubblePlot = "BubblePlot",
44
- vennDiagramChart = "VennDiagramChart",
45
- speedometerChart = "SpeedometerChart",
46
- layeredColumnChart = "LayeredColumnChart",
47
- layeredBarChart = "LayeredBarChart",
48
- organizationalChart = "OrganizationalChart",
49
- pyramidChart = "PyramidChart",
50
- scaleBreakStackedColumnChart = "ScaleBreakStackedColumnChart",
51
- progressChart = "ProgressChart",
52
- radialBarChart = "RadialBarChart"
53
- }
54
- export type TChartProps = {
55
- data: TData;
56
- isDateType: any;
57
- chartId?: string;
58
- formatOptions?: TDefaultChartFormatOptionsType;
59
- };
60
- export type TChartJSON = {
61
- dimensionList: string[];
62
- chartData: any[];
63
- formatOptions: TDefaultChartFormatOptionsType;
64
- chartType: string;
65
- legendList: string[];
66
- secondaryAxisDrawn: boolean;
67
- yMaxLeft: number;
68
- yMaxRight: number;
69
- yMinLeft: number;
70
- yMinRight: number;
71
- hideZeroValues: boolean;
72
- formattedDimensionListMap: Map<string, any>;
73
- xMax?: number;
74
- xMin?: number;
75
- };
76
- export interface IXaxisData {
77
- name: INameObject;
78
- dataType: string;
79
- dataSourceId: string;
80
- groupBy?: string;
81
- }
82
- export interface IYaxisData {
83
- name: INameObject;
84
- dataType?: string;
85
- dataSourceId: string;
86
- filterData: IFilterData[];
87
- legendData: ILegendData[];
88
- }
89
- export interface IFilterData {
90
- actualName: string;
91
- dataSourceId?: string;
92
- name: string;
93
- type: string;
94
- }
95
- export interface ILegendData {
96
- actualName: string;
97
- dataSourceId?: string;
98
- name: string;
99
- type: string;
100
- }
101
- export interface INameObject {
102
- actualName: string;
103
- dataSourceId?: string;
104
- name: string;
105
- type: string;
106
- }
107
- export interface ILineData {
108
- annotation?: number;
109
- axis?: string;
110
- color?: string;
111
- legend?: string;
112
- lineStyle?: string;
113
- type?: string;
114
- hideZeroValues?: boolean;
115
- legendUniqueId?: string;
116
- lineWidth?: number;
117
- markerColor?: string;
118
- markerShape?: string;
119
- markerSize?: number;
120
- maximumMeasure?: number;
121
- minimumMeasure?: number;
122
- seriesLabelVisibility?: boolean;
123
- fontStyle?: string[];
124
- borderColor?: string;
125
- disableConnector?: boolean;
126
- disableLineStyle?: boolean;
127
- actualChartType?: string;
128
- endColor?: string;
129
- stackBorderColor?: string;
130
- valueFontColor?: string;
131
- disableAnnotationPosition?: string;
132
- name?: string;
133
- startColor?: string;
134
- disableAnnotation?: boolean;
135
- labelFontSize?: number;
136
- labelColor?: string;
137
- borderStyle?: string;
138
- nodeWidth?: number;
139
- measureUniqueId?: string;
140
- stackBorderWidth?: number;
141
- dataLabelPosition?: string;
142
- disableMarkerShape?: boolean;
143
- disableMarkerColor?: boolean;
144
- borderRadius?: number;
145
- fontSize?: number;
146
- valueFont?: string;
147
- setColorScale?: boolean;
148
- connector?: number;
149
- areaBorderColor?: string;
150
- labelFontStyle?: string[];
151
- borderWidth?: number;
152
- secondaryAxisBgColor?: string;
153
- opacity?: number;
154
- fontFamily?: string;
155
- backgroundColor?: string;
156
- valueFontStyle?: string[];
157
- valueFontSize?: number;
158
- labelFontColor?: string;
159
- nodeHeight?: number;
160
- disableDataLabelPosition?: boolean;
161
- disableMarkerSize?: boolean;
162
- annotationPosition?: number;
163
- alias?: string;
164
- stackBorderStyle?: number;
165
- labelFont?: string;
166
- individualAnnotationVisibility?: string;
167
- currentMeasure?: string;
168
- currentLegend?: string;
169
- tooltip?: string;
170
- tooltipMeasure?: number;
171
- }
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const ColumnChart: React.FC<TChartProps>;
4
- export default ColumnChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const ColumnHistogramChart: React.FC<TChartProps>;
4
- export default ColumnHistogramChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const CustomColumnChart: React.FC<TChartProps>;
4
- export default CustomColumnChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const LayeredColumnChart: React.FC<TChartProps>;
4
- export default LayeredColumnChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const NormalizedStackColumnChart: React.FC<TChartProps>;
4
- export default NormalizedStackColumnChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const StackColumnChart: React.FC<TChartProps>;
4
- export default StackColumnChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const HorizontalBarChart: React.FC<TChartProps>;
4
- export default HorizontalBarChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const HorizontalHistogramChart: React.FC<TChartProps>;
4
- export default HorizontalHistogramChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const LayeredHorizontalBarChart: React.FC<TChartProps>;
4
- export default LayeredHorizontalBarChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const NormalizedStackHorizontalBarChart: React.FC<TChartProps>;
4
- export default NormalizedStackHorizontalBarChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const StackHorizontalChart: React.FC<TChartProps>;
4
- export default StackHorizontalChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const LineChart: React.FC<TChartProps>;
4
- export default LineChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const NormalisedStackLineChart: React.FC<TChartProps>;
4
- export default NormalisedStackLineChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const StackLineChart: React.FC<TChartProps>;
4
- export default StackLineChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const TornadoChart: React.FC<TChartProps>;
4
- export default TornadoChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { type TChartProps } from "../ChartsWithAxisTypes.types";
3
- declare const WaterfallChart: React.FC<TChartProps>;
4
- export default WaterfallChart;
@@ -1,92 +0,0 @@
1
- import { TChartMargins, TDefaultChartFormatOptionsType } from "../Core/Common.types";
2
- /**
3
- * Calculates margins for Bubble and Scatter charts based on various parameters.
4
- * @param width // Width of the chart container.
5
- * @param height // Height of the chart container.
6
- * @param maxMeasure // Maximum measure value.
7
- * @param formatOptions // Formatting options for the chart.
8
- * @param maxDimension // Maximum dimension value.
9
- * @param maxLegendDimensions // Maximum dimensions for the legend.
10
- * @returns /** An object containing calculated margins and other related dimensions.
11
- */
12
- export declare function marginCalculationForBubbleScatter(width: number, height: number, maxMeasure: number, formatOptions: TDefaultChartFormatOptionsType, maxDimension: number, maxLegendDimensions: number[]): {
13
- margins: TChartMargins;
14
- yLabel: number;
15
- xLabel: number;
16
- yTitle: number;
17
- xTitle: number;
18
- chartTitleHeight: number;
19
- legendMargin: number;
20
- innerHeight: number;
21
- innerWidth: number;
22
- };
23
- export declare function customYscaleLabelFormatting(formatOptions: TDefaultChartFormatOptionsType, YminLeft: number, YmaxLeft: number): {
24
- longestMeasure: number;
25
- customYaxisIntervalValue: number;
26
- customYaxisMaxValue: number;
27
- customYaxisMinValue: number;
28
- };
29
- export declare function customXscaleLabelFormatting(formatOptions: TDefaultChartFormatOptionsType, xMinLeft: number, xMaxLeft: number): {
30
- longestDimension: number;
31
- customXaxisIntervalValue: number;
32
- customXaxisMaxValue: number;
33
- customXaxisMinValue: number;
34
- };
35
- /**
36
- * Sets the X-axis title on the SVG chart, adjusting visibility, positioning, and styling based on format options and chart type.
37
- *
38
- * @param {TDefaultChartFormatOptionsType} formatOptions - Chart format options including axis title settings and visibility.
39
- * @param {boolean} barChart - Flag indicating if the chart is a bar chart.
40
- * @param {any} svg - D3 selection of the SVG element where the X-axis title will be appended.
41
- * @param {TMargin} margin - Margin object containing top, left, right, and bottom margins.
42
- * @param {number} xLabel - Height offset for the X-axis label.
43
- * @param {number} height - Total height of the SVG/chart container.
44
- * @param {number} xTitle - Height allocated for the X-axis title element.
45
- * @param {string} chartType - The type of chart (e.g., "bar", "line", etc.).
46
- * @param {number} yLabel - Y-axis label offset (used for positioning in some cases).
47
- * @param {number} innerWidth - Inner width of the static SVG container.
48
- * @param {number} innerHeight - Height of the inner chart area (excluding margins).
49
- *
50
- * @returns {any} The modified SVG selection with the appended X-axis title element.
51
- */
52
- export declare function setXaxistitle(formatOptions: TDefaultChartFormatOptionsType, barChart: boolean, svg: any, margin: TChartMargins, xLabel: number, height: number, xTitle: number, chartType: string, yLabel: number, innerWidth: number, innerHeight: number): void;
53
- /**
54
- * Adds a Y-axis title to the SVG chart, handling visibility, positioning, rotation, and styling based on format options.
55
- *
56
- * @param {number} innerHeight - The height of the inner chart area (excluding margins).
57
- * @param {TDefaultChartFormatOptionsType} formatOptions - Chart formatting options, including Y-axis title settings.
58
- * @param {number} dataTableHeight - Height of any data table below the chart, used to adjust positioning.
59
- * @param {boolean} barChart - Whether the chart is a bar chart.
60
- * @param {any} svg - D3 selection of the SVG element where the Y-axis title will be appended.
61
- * @param {TMargin} margin - Margins around the chart.
62
- * @param {number} yTitle - Height allocated for the Y-axis title element.
63
- * @param {number} yLabel - Offset for the Y-axis label, used for positioning.
64
- *
65
- * @returns {any} The SVG selection with the appended Y-axis title.
66
- */
67
- export declare function yAxistitle(innerHeight: number, formatOptions: TDefaultChartFormatOptionsType, dataTableHeight: number, barChart: boolean, svg: any, margin: TChartMargins, yTitle: number, yLabel: number): any;
68
- /**
69
- * Generates an array of Y-axis labels based on provided min, max values,
70
- * chart dimensions, format options, and optional custom min/max values.
71
- *
72
- * @param {number} Ymax - The maximum Y value from data or chart.
73
- * @param {number} Ymin - The minimum Y value from data or chart.
74
- * @param {number} innerHeight - The inner height of the chart area in pixels.
75
- * @param {TDefaultChartFormatOptionsType} formatOptions - Configuration options for formatting the axis labels.
76
- * @param {TChartJSON} chartJSON - Chart metadata including Y axis min/max values.
77
- * @param {number} customYaxisMinValue - Optional custom minimum Y-axis value.
78
- * @param {number} customYaxisMaxValue - Optional custom maximum Y-axis value.
79
- *
80
- * @returns {{ yAxisLabelArray: number[], customTickValue?: number }} Object containing the array of Y-axis labels and optionally the computed custom tick count.
81
- */
82
- export declare function responsiveYaxisLabel(Ymax: number, Ymin: number, innerHeight: number, formatOptions: TDefaultChartFormatOptionsType, customYaxisMinValue: number, customYaxisMaxValue: number): {
83
- yAxisLabelArray: any[];
84
- customTickValue: any;
85
- };
86
- export declare function responsiveXaxisLabelForNumericValue(xMax: number, xMin: number, innerWidth: number, formatOptions: TDefaultChartFormatOptionsType, customXaxisMinValue: number, customXaxisMaxValue: number, innerHeight: number, barChart?: boolean): {
87
- xAxisLabelArray: any[];
88
- customTickValue: any;
89
- };
90
- export declare function initYaxis(gTag: any, formatOptions: TDefaultChartFormatOptionsType, dataTableHeight: number, yLabel: number, yAxisLeft: any, innerHeight: number): void;
91
- export declare function initXaxis(gTag: any, formatOptions: TDefaultChartFormatOptionsType, dataTableHeight: number, xLabel: number, xAxis: any, innerHeight: number, innerWidth: number, margins: TChartMargins, yScale: any): void;
92
- export declare const setnumberOfBubbles: (svg: d3.Selection<SVGSVGElement, unknown, null, undefined>, legendPosition: string, chartFormatOptions: TDefaultChartFormatOptionsType, height: number, width: number, margins: TChartMargins, innnerHeight: number, xTitleHeight: number, XLabelHeight: number, bubbleCount: number) => void;
@@ -1,111 +0,0 @@
1
- import { TDefaultChartFormatOptionsType, TLegendEntry, TPieOfPieSeries, TSeries } from "../Core/Common.types";
2
- export interface IChartProps {
3
- chartId: string;
4
- data: {
5
- ChartData: TSeries[];
6
- };
7
- clientWidth: number;
8
- clientHeight: number;
9
- formatOptions: TDefaultChartFormatOptionsType;
10
- }
11
- export interface IPieofPieChartProps {
12
- chartId: string;
13
- clientWidth: number;
14
- clientHeight: number;
15
- data: TPieOfPieSeries[];
16
- formatOptions: TDefaultChartFormatOptionsType;
17
- legendProperties: TLegendEntry[];
18
- }
19
- export interface IVennChartProps {
20
- chartId: string;
21
- data: TVennSeries[];
22
- clientWidth: number;
23
- clientHeight: number;
24
- formatOptions: TDefaultChartFormatOptionsType;
25
- }
26
- export type TVennSeries = {
27
- "sets": string[];
28
- "label": string;
29
- "legendDisplay": string;
30
- "size": number;
31
- "properties"?: TLegendEntry;
32
- "actualValue": number;
33
- };
34
- export type TSankeyChartProps = {
35
- data: any;
36
- sankeyLinks: TNodePairs[];
37
- sankeyNodes: TLegendEntry[];
38
- chartId: string;
39
- clientWidth: number;
40
- clientHeight: number;
41
- formatOptions: TDefaultChartFormatOptionsType;
42
- };
43
- export type TNodePairs = {
44
- source: string;
45
- target: string;
46
- value: number;
47
- };
48
- export declare const TSankeyDataLabelPostion: {
49
- left: string;
50
- right: string;
51
- center: string;
52
- };
53
- export type TOrganizationChartData = {
54
- id?: number;
55
- value: number | null;
56
- absoluteValue: number;
57
- label?: string;
58
- nodeLabel?: string;
59
- children?: TOrganizationChartData[];
60
- styleObject?: TLegendEntry;
61
- };
62
- export type TOrganizationChartProps = {
63
- data: TOrganizationChartData[];
64
- legendEntries: TLegendEntry[];
65
- chartId: string;
66
- clientWidth: number;
67
- clientHeight: number;
68
- formatOptions: TDefaultChartFormatOptionsType;
69
- legendSequence: string[];
70
- };
71
- export declare const orgChartDirection: {
72
- left: string;
73
- right: string;
74
- top: string;
75
- bottom: string;
76
- };
77
- export declare const connectorStyle: {
78
- solid: string;
79
- dashed: string;
80
- dotted: string;
81
- };
82
- export declare const orgChartNodeType: {
83
- rounded: string;
84
- pill: string;
85
- extra_rounded: string;
86
- squircle: string;
87
- rectangle: string;
88
- };
89
- export declare const orgChartLineType: {
90
- curve: string;
91
- elbow: string;
92
- diagonal: string;
93
- s_curve: string;
94
- arc: string;
95
- reverse_elbow: string;
96
- zigzag: string;
97
- };
98
- export type TOrgChartdata = {
99
- id: number;
100
- value: number;
101
- absoluteValue: number;
102
- nodeLabel: string;
103
- label: string;
104
- UID: string;
105
- styleObject: TLegendEntry;
106
- _expanded: boolean;
107
- _pagingStep: number;
108
- _directSubordinatesPaging: number;
109
- _directSubordinates: number;
110
- _totalSubordinates: number;
111
- };
@@ -1,26 +0,0 @@
1
- export declare const unitedStates: {
2
- type: string;
3
- features: ({
4
- type: string;
5
- id: string;
6
- properties: {
7
- name: string;
8
- value: number;
9
- };
10
- geometry: {
11
- type: string;
12
- coordinates: number[][][];
13
- };
14
- } | {
15
- type: string;
16
- id: string;
17
- properties: {
18
- name: string;
19
- value: number;
20
- };
21
- geometry: {
22
- type: string;
23
- coordinates: number[][][][];
24
- };
25
- })[];
26
- };
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IMapsProps } from "../../Core/Common.types";
3
- declare const Maps: React.FC<IMapsProps>;
4
- export default Maps;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { TBubbleChartProps } from "../../Core/Common.types";
3
- declare const BubbleChart: React.FC<TBubbleChartProps>;
4
- export default BubbleChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { TOrganizationChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const OrganizationChart: React.FC<TOrganizationChartProps>;
4
- export default OrganizationChart;
@@ -1,3 +0,0 @@
1
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
2
- declare const ProgressChart: React.FC<IChartProps>;
3
- export default ProgressChart;
@@ -1,3 +0,0 @@
1
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
2
- declare const PyramidChart: React.FC<IChartProps>;
3
- export default PyramidChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const RadialBarChart: React.FC<IChartProps>;
4
- export default RadialBarChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { TSankeyChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const SankeyChart: React.FC<TSankeyChartProps>;
4
- export default SankeyChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { TScatterChartProps } from "../../Core/Common.types";
3
- declare const ScatterChart: React.FC<TScatterChartProps>;
4
- export default ScatterChart;
@@ -1,3 +0,0 @@
1
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
2
- declare const Speedometer: React.FC<IChartProps>;
3
- export default Speedometer;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IVennChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const VennChart: React.FC<IVennChartProps>;
4
- export default VennChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const WordCloud: React.FC<IChartProps>;
4
- export default WordCloud;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const DonutChart: React.FC<IChartProps>;
4
- export default DonutChart;
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
3
- declare const PieChart: React.FC<IChartProps>;
4
- export default PieChart;
@@ -1,10 +0,0 @@
1
- /**
2
- * Calculates the coordinates for displaying the total value in the chart.
3
- * @param chartFormatOptions - The formatting options for the chart.
4
- * @param totalValue - The total value to be displayed.
5
- * @param chartTitleHeight - The height of the chart title.
6
- * @param chartAreaTagG - The SVG group element for the chart area.
7
- * @param innerWidth - The inner width of the chart area.
8
- * @param innerHeight - The inner height of the chart area.
9
- */
10
- export declare const drawTotalValue: (chartFormatOptions: any, totalValue: any, chartTitleHeight: any, chartAreaTagG: any, innerWidth: any, innerHeight: any) => void;
@@ -1,3 +0,0 @@
1
- import { IPieofPieChartProps } from "../ChartsWithoutAxisTypes.types";
2
- declare const PieofPie: React.FC<IPieofPieChartProps>;
3
- export default PieofPie;
@@ -1,3 +0,0 @@
1
- import { IChartProps } from "../ChartsWithoutAxisTypes.types";
2
- declare const Treemap: React.FC<IChartProps>;
3
- export default Treemap;