pace-chart-lib 1.0.19 → 1.0.20
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/AreaFamily/AreaChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/AreaFamily/NormalizedStackAreaChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/AreaFamily/StackAreaChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/ChartsWithAxisFunctions.d.ts +667 -0
- package/dist/Components/Charts/ChartsWithAxis/ChartsWithAxisTypes.types.d.ts +164 -0
- package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/ColumnChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/ColumnHistogramChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/CustomColumnChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/LayeredColumnChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/NormalizedStackColumnChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/ColumnFamily/StackColumnChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalBarChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalHistogramChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/LayeredHorizontalBarChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/NormalizedStackHorizontalBarChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/HorizontalBarFamily/StackHorizontalBarChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/LineFamily/LineChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/LineFamily/NormalizedStackLineChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/LineFamily/StackLineChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/TornadoChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/WaterfallChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/ChartsWithoutAxisFunctions.d.ts +92 -0
- package/dist/Components/Charts/ChartsWithoutAxis/ChartsWithoutAxisTypes.types.d.ts +111 -0
- package/dist/Components/Charts/ChartsWithoutAxis/Maps/Cordinates.d.ts +26 -0
- package/dist/Components/Charts/ChartsWithoutAxis/Maps/Maps.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/BubbleChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/OrganizationChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/ProgressChart.d.ts +3 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/PyramidChart.d.ts +3 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/RadialBarChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/SankeyChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/ScatterChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/Speedometer.d.ts +3 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/VennChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/OtherCharts/WordCloud.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/DonutChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/PieChart.d.ts +4 -0
- package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/PieFamilyCommonFunctions.d.ts +10 -0
- package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/PieofPieChart.d.ts +3 -0
- package/dist/Components/Charts/ChartsWithoutAxis/PieFamily/TreemapChart.d.ts +3 -0
- package/dist/Components/Charts/Core/Common.types.d.ts +371 -0
- package/dist/Components/Charts/Core/CommonFunctions.d.ts +240 -0
- package/dist/Components/Charts/Core/DefaultChartDataProperties.d.ts +65 -0
- package/dist/Components/Charts/Core/DefaultProperties.types.d.ts +595 -0
- package/dist/Services/ErrorLog.d.ts +1 -0
- package/dist/index.d.ts +35 -0
- package/dist/pace-chart-lib.es.js +54406 -0
- package/dist/pace-chart-lib.umd.js +54409 -0
- package/dist/vite.svg +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,595 @@
|
|
|
1
|
+
export declare const defaultChartFormatOptions: {
|
|
2
|
+
chartDescription: {
|
|
3
|
+
chartDescriptionVisibility: boolean;
|
|
4
|
+
chartDescriptionText: string;
|
|
5
|
+
chartDescriptionId: string;
|
|
6
|
+
};
|
|
7
|
+
chartArea: {
|
|
8
|
+
chartAreaColor: string;
|
|
9
|
+
chartAreaBorder: boolean;
|
|
10
|
+
chartAreaBorderThickness: string;
|
|
11
|
+
chartAreaBorderColor: string;
|
|
12
|
+
chartAreaBorderStyle: string;
|
|
13
|
+
};
|
|
14
|
+
chartTitle: {
|
|
15
|
+
chartTitleVisibility: boolean;
|
|
16
|
+
chartTitleFontSize: string;
|
|
17
|
+
chartTitleFontFamily: string;
|
|
18
|
+
chartTitleFontStyle: any[];
|
|
19
|
+
chartTitleColor: string;
|
|
20
|
+
chartTitleText: string;
|
|
21
|
+
dynamicTitleText: string;
|
|
22
|
+
chartTitleHTML: string;
|
|
23
|
+
};
|
|
24
|
+
xAxisLabel: {
|
|
25
|
+
xAxisLabelVisibility: boolean;
|
|
26
|
+
xAxisColor: string;
|
|
27
|
+
xAxisColorInverted: string;
|
|
28
|
+
xAxisWidth: string;
|
|
29
|
+
xAxisLabelFontSize: string;
|
|
30
|
+
xAxisLabelFontFamily: string;
|
|
31
|
+
xAxisLabelFontStyle: any[];
|
|
32
|
+
xAxisLabelColor: string;
|
|
33
|
+
xAxisNumberFormat: string;
|
|
34
|
+
xAxisQuarterFormat: string;
|
|
35
|
+
xAxisDisplayUnits: string;
|
|
36
|
+
xAxisDisplayUnitsLabel: boolean;
|
|
37
|
+
xAxisLabelRotation: number;
|
|
38
|
+
xAxisDateFormat: string;
|
|
39
|
+
xAxisLabelDecimalPrecision: string;
|
|
40
|
+
xAxisLabelText: string;
|
|
41
|
+
xAxisLabelDynamicText: string;
|
|
42
|
+
xAxisLabelHTML: string;
|
|
43
|
+
xAxisPosition: string;
|
|
44
|
+
xAxisBackgroundColor: string;
|
|
45
|
+
xAxisIntervalsVisibility: boolean;
|
|
46
|
+
xAxisMinText: string;
|
|
47
|
+
xAxisMaxText: string;
|
|
48
|
+
xAxisIntervalText: string;
|
|
49
|
+
hideZeroValues: boolean;
|
|
50
|
+
xAxisSortBy: string;
|
|
51
|
+
customSort: any[];
|
|
52
|
+
labelTextWrap: boolean;
|
|
53
|
+
};
|
|
54
|
+
xAxisScale: {
|
|
55
|
+
absoluteXAxisScale: boolean;
|
|
56
|
+
customScale: string;
|
|
57
|
+
};
|
|
58
|
+
xAxisTitle: {
|
|
59
|
+
xAxisTitleVisibility: boolean;
|
|
60
|
+
xAxisTitleFontSize: string;
|
|
61
|
+
xAxisTitleFontFamily: string;
|
|
62
|
+
xAxisTitleFontStyle: any[];
|
|
63
|
+
xAxisTitleColor: string;
|
|
64
|
+
xAxisTitleText: string;
|
|
65
|
+
xAxisDynamicTitleText: string;
|
|
66
|
+
xAxisTitleHTML: string;
|
|
67
|
+
};
|
|
68
|
+
yAxisScale: {
|
|
69
|
+
absoluteYAxisScale: boolean;
|
|
70
|
+
customScale: string;
|
|
71
|
+
};
|
|
72
|
+
yAxisLabel: {
|
|
73
|
+
yAxisLabelVisibility: boolean;
|
|
74
|
+
yAxisColor: string;
|
|
75
|
+
yAxisColorInverted: string;
|
|
76
|
+
yAxisWidth: string;
|
|
77
|
+
yAxisLabelFontSize: string;
|
|
78
|
+
yAxisLabelFontFamily: string;
|
|
79
|
+
yAxisLabelFontStyle: any[];
|
|
80
|
+
yAxisLabelColor: string;
|
|
81
|
+
yAxisNumberFormat: string;
|
|
82
|
+
yAxisDisplayUnits: string;
|
|
83
|
+
yAxisLabelRotation: number;
|
|
84
|
+
yAxisDisplayUnitsLabel: boolean;
|
|
85
|
+
yAxisDateFormat: string;
|
|
86
|
+
yAxisLabelDecimalPrecision: string;
|
|
87
|
+
yAxisLabelText: string;
|
|
88
|
+
yAxisLabelDynamicText: string;
|
|
89
|
+
yAxisLabelHTML: string;
|
|
90
|
+
yAxisPosition: string;
|
|
91
|
+
yAxisBackgroundColor: string;
|
|
92
|
+
yAxisIntervalsVisibility: boolean;
|
|
93
|
+
yAxisMinText: string;
|
|
94
|
+
yAxisMaxText: string;
|
|
95
|
+
yAxisIntervalText: string;
|
|
96
|
+
hideZeroValues: boolean;
|
|
97
|
+
yAxisSortBy: string;
|
|
98
|
+
customSort: any[];
|
|
99
|
+
};
|
|
100
|
+
yAxisTitle: {
|
|
101
|
+
yAxisTitleVisibility: boolean;
|
|
102
|
+
yAxisTitleFontSize: string;
|
|
103
|
+
yAxisTitleFontFamily: string;
|
|
104
|
+
yAxisTitleFontStyle: any[];
|
|
105
|
+
yAxisTitleColor: string;
|
|
106
|
+
yAxisTitleText: string;
|
|
107
|
+
yAxisDynamicTitleText: string;
|
|
108
|
+
yAxisTitleHTML: string;
|
|
109
|
+
};
|
|
110
|
+
secondaryYAxisLabel: {
|
|
111
|
+
secondaryYAxisLabelVisibility: boolean;
|
|
112
|
+
secondaryYAxisColor: string;
|
|
113
|
+
secondaryYAxisWidth: string;
|
|
114
|
+
secondaryYAxisLabelFontSize: string;
|
|
115
|
+
secondaryYAxisLabelFontFamily: string;
|
|
116
|
+
secondaryYAxisLabelFontStyle: any[];
|
|
117
|
+
secondaryYAxisLabelColor: string;
|
|
118
|
+
secondaryYAxisNumberFormat: string;
|
|
119
|
+
secondaryYAxisDisplayUnits: string;
|
|
120
|
+
secondaryYAxisDisplayUnitsLabel: boolean;
|
|
121
|
+
secondaryYAxisSyncWithPrimaryLabel: boolean;
|
|
122
|
+
secondaryYAxisDateFormat: string;
|
|
123
|
+
secondaryYAxisLabelDecimalPrecision: string;
|
|
124
|
+
secondaryYAxisBackgroundColor: string;
|
|
125
|
+
secondaryYAxisIntervalsVisibility: boolean;
|
|
126
|
+
secondaryYAxisMinText: string;
|
|
127
|
+
secondaryYAxisMaxText: string;
|
|
128
|
+
secondaryYAxisIntervalText: string;
|
|
129
|
+
};
|
|
130
|
+
secondaryYAxisTitle: {
|
|
131
|
+
secondaryYAxisTitleVisibility: boolean;
|
|
132
|
+
secondaryYAxisTitleFontSize: string;
|
|
133
|
+
secondaryYAxisTitleFontFamily: string;
|
|
134
|
+
secondaryYAxisTitleFontStyle: any[];
|
|
135
|
+
secondaryYAxisTitleColor: string;
|
|
136
|
+
secondaryYAxisTitleText: string;
|
|
137
|
+
secondaryYAxisDynamicTitleText: string;
|
|
138
|
+
secondaryYAxisTitleHTML: string;
|
|
139
|
+
};
|
|
140
|
+
legends: {
|
|
141
|
+
legendVisibility: boolean;
|
|
142
|
+
primaryTitleVisibility: boolean;
|
|
143
|
+
primaryTitleText: string;
|
|
144
|
+
primaryTitleFontSize: string;
|
|
145
|
+
primaryTitleFontFamily: string;
|
|
146
|
+
primaryTitleFontStyle: any[];
|
|
147
|
+
secondaryTitleVisibility: boolean;
|
|
148
|
+
secondaryTitleText: string;
|
|
149
|
+
secondaryTitleFontSize: string;
|
|
150
|
+
secondaryTitleFontFamily: string;
|
|
151
|
+
secondaryTitleFontStyle: any[];
|
|
152
|
+
legendPosition: string;
|
|
153
|
+
legendAlignment: string;
|
|
154
|
+
legendAlignmentTopBottom: string;
|
|
155
|
+
legendFontSize: string;
|
|
156
|
+
legendFontFamily: string;
|
|
157
|
+
legendFontStyle: any[];
|
|
158
|
+
legendBorder: boolean;
|
|
159
|
+
legendBorderThickness: string;
|
|
160
|
+
legendBorderColor: string;
|
|
161
|
+
vennLabelColor: string;
|
|
162
|
+
onHoverEffect: boolean;
|
|
163
|
+
legendColorMode: string;
|
|
164
|
+
legendSelectedUnicolor: string;
|
|
165
|
+
};
|
|
166
|
+
plotArea: {
|
|
167
|
+
plotAreaColor: string;
|
|
168
|
+
plotAreaBorder: boolean;
|
|
169
|
+
plotAreaBorderThickness: string;
|
|
170
|
+
plotAreaBorderColor: string;
|
|
171
|
+
plotAreaGapWidth: string;
|
|
172
|
+
plotAreaSeriesWidth: string;
|
|
173
|
+
plotAreaBarWidth: string;
|
|
174
|
+
gridLinesVisibility: boolean;
|
|
175
|
+
gridLinesHorizontal: boolean;
|
|
176
|
+
gridLinesVertical: boolean;
|
|
177
|
+
ticksHeight: string;
|
|
178
|
+
gridLinesColor: string;
|
|
179
|
+
xCoordinate: string;
|
|
180
|
+
yCoordinate: string;
|
|
181
|
+
dataLabels: boolean;
|
|
182
|
+
annotationDraggable: boolean;
|
|
183
|
+
annotationType: string;
|
|
184
|
+
connectorCurve: string;
|
|
185
|
+
connectorType: string;
|
|
186
|
+
connectorColor: string;
|
|
187
|
+
connectorStyle: string;
|
|
188
|
+
dataLabelsforMaps: boolean;
|
|
189
|
+
dataLabelPosition: string;
|
|
190
|
+
dataLabelSize: string;
|
|
191
|
+
dataLabelValueColor: string;
|
|
192
|
+
dataLabelValueFontSize: string;
|
|
193
|
+
dataLabelValueFontFamily: string;
|
|
194
|
+
dataLabelValueFontStyle: any[];
|
|
195
|
+
dataLabelNumberFormat: string;
|
|
196
|
+
dataLabelNumberFormatProgress: string;
|
|
197
|
+
axialAxis: boolean;
|
|
198
|
+
axialAxisDataLabelColor: string;
|
|
199
|
+
axialAxisDataLabelFontSize: string;
|
|
200
|
+
axialAxisDataLabelFontFamily: string;
|
|
201
|
+
axialAxisDataLabelFontStyle: any[];
|
|
202
|
+
axialAxisDataLabelNumberFormat: string;
|
|
203
|
+
axialAxisDataLabelDecimalPrecision: string;
|
|
204
|
+
dataLabelDecimalPrecision: string;
|
|
205
|
+
dataLabelNameColor: string;
|
|
206
|
+
dataLabelNameFontSize: string;
|
|
207
|
+
dataLabelNameFontFamily: string;
|
|
208
|
+
dataLabelNameFontStyle: any[];
|
|
209
|
+
fillOpacity: string;
|
|
210
|
+
innerRadius: string;
|
|
211
|
+
cornerRadius: string;
|
|
212
|
+
axialGrid: boolean;
|
|
213
|
+
arcPadding: string;
|
|
214
|
+
axialTicks: string;
|
|
215
|
+
arcTransition: boolean;
|
|
216
|
+
innerRadiusForSpeedometer: string;
|
|
217
|
+
ticks: string;
|
|
218
|
+
pointerColor: string;
|
|
219
|
+
pointerHeadLength: string;
|
|
220
|
+
totalColor: string;
|
|
221
|
+
positiveColor: string;
|
|
222
|
+
negativeColor: string;
|
|
223
|
+
dataLabelValue: boolean;
|
|
224
|
+
plotAreaAbsoluteValue: boolean;
|
|
225
|
+
dataLabelName: boolean;
|
|
226
|
+
bubbleSizeIndex: string;
|
|
227
|
+
scatterSizeIndex: string;
|
|
228
|
+
hideZeroValues: boolean;
|
|
229
|
+
boxLineColor: string;
|
|
230
|
+
boxLineWidth: string;
|
|
231
|
+
boxOutlier: boolean;
|
|
232
|
+
boxOutlierRadius: string;
|
|
233
|
+
plotAreaShowTrendLine: boolean;
|
|
234
|
+
plotAreaTrendLine: string;
|
|
235
|
+
plotAreaTrendLineWidth: string;
|
|
236
|
+
plotAreaTrendLineColor: string;
|
|
237
|
+
opacity: string;
|
|
238
|
+
plotAreaCalculatedHigh: string;
|
|
239
|
+
plotAreaCalculatedLow: string;
|
|
240
|
+
plotAreaDataLabel: string;
|
|
241
|
+
plotAreaDisplayUnits: string;
|
|
242
|
+
plotAreaHideLineAndMarkers: boolean;
|
|
243
|
+
dataLabelsOptions: string;
|
|
244
|
+
xscaleposition: string;
|
|
245
|
+
yscaleposition: string;
|
|
246
|
+
numberOfBubbles: boolean;
|
|
247
|
+
totalAlias: boolean;
|
|
248
|
+
totalAliasText: string;
|
|
249
|
+
refLineBorderThickness: string;
|
|
250
|
+
refLineBorderColor: string;
|
|
251
|
+
flipPyramid: boolean;
|
|
252
|
+
opacityforProgressScale: string;
|
|
253
|
+
opacityforProgressGoal: string;
|
|
254
|
+
lineStyle: string;
|
|
255
|
+
lineWidth: string;
|
|
256
|
+
fitChart: boolean;
|
|
257
|
+
scaleFactor: string;
|
|
258
|
+
rotation: string;
|
|
259
|
+
intersectionLabelVisibility: boolean;
|
|
260
|
+
intersectionValueVisibility: boolean;
|
|
261
|
+
dataLabelsCoordinates: any[];
|
|
262
|
+
hideInsignificantValue: boolean;
|
|
263
|
+
sortBy: string;
|
|
264
|
+
chartDirection: string;
|
|
265
|
+
};
|
|
266
|
+
heatMap: {
|
|
267
|
+
showHeatMap: boolean;
|
|
268
|
+
heatMapMinColor: string;
|
|
269
|
+
heatMapMaxColor: string;
|
|
270
|
+
};
|
|
271
|
+
marker: {
|
|
272
|
+
markerVisibility: boolean;
|
|
273
|
+
markerSize: string;
|
|
274
|
+
markerShape: string;
|
|
275
|
+
lineWidth: string;
|
|
276
|
+
markerColor: string;
|
|
277
|
+
};
|
|
278
|
+
annotation: {
|
|
279
|
+
annotationDraggable: boolean;
|
|
280
|
+
annotationType: string;
|
|
281
|
+
connectorCurve: string;
|
|
282
|
+
connectorType: string;
|
|
283
|
+
connectorColor: string;
|
|
284
|
+
connectorStyle: string;
|
|
285
|
+
annotationVisibility: string;
|
|
286
|
+
annotationPosition: string;
|
|
287
|
+
annotationNumberFormat: string;
|
|
288
|
+
annotationColor: string;
|
|
289
|
+
annotationFontSize: string;
|
|
290
|
+
annotationFontFamily: string;
|
|
291
|
+
annotationFontStyle: any[];
|
|
292
|
+
annotationDecimalPrecision: string;
|
|
293
|
+
annotationDisplayUnits: string;
|
|
294
|
+
annotationBoxVisibility: any[];
|
|
295
|
+
annotationHideZeroValues: boolean;
|
|
296
|
+
annotationShowHiddenValues: boolean;
|
|
297
|
+
annotationSetLabelColor: string;
|
|
298
|
+
};
|
|
299
|
+
total: {
|
|
300
|
+
totalVisibility: boolean;
|
|
301
|
+
annotationDraggable: boolean;
|
|
302
|
+
annotationType: string;
|
|
303
|
+
connectorCurve: string;
|
|
304
|
+
connectorType: string;
|
|
305
|
+
connectorColor: string;
|
|
306
|
+
connectorStyle: string;
|
|
307
|
+
dataLabelsCoordinates: any[];
|
|
308
|
+
totalNumberFormat: string;
|
|
309
|
+
totalColor: string;
|
|
310
|
+
totalFontSize: string;
|
|
311
|
+
totalFontFamily: string;
|
|
312
|
+
totalFontStyle: any[];
|
|
313
|
+
totalConnectorType: string;
|
|
314
|
+
totalDecimalPrecision: string;
|
|
315
|
+
totalPosition: string;
|
|
316
|
+
totalAlignment: string;
|
|
317
|
+
totalHideZeroValues: boolean;
|
|
318
|
+
totalDisplayUnits: string;
|
|
319
|
+
editTotalTextToggle: boolean;
|
|
320
|
+
editTotalText: string;
|
|
321
|
+
};
|
|
322
|
+
toolTip: {
|
|
323
|
+
toolTipVisibility: boolean;
|
|
324
|
+
toolTipTheme: string;
|
|
325
|
+
toolTipNumberFormat: string;
|
|
326
|
+
toolTipNumberFormatProgress: string;
|
|
327
|
+
toolTipDecimalPrecision: string;
|
|
328
|
+
toolTipLabelText: string;
|
|
329
|
+
toolTipDisplayUnits: string;
|
|
330
|
+
toolTipLabelDynamicText: string;
|
|
331
|
+
};
|
|
332
|
+
nodes: {
|
|
333
|
+
nodesColor: string;
|
|
334
|
+
nodesSingleColor: boolean;
|
|
335
|
+
nodesFillOpacity: string;
|
|
336
|
+
spacing: string;
|
|
337
|
+
sankeyNodeWidth: string;
|
|
338
|
+
sankeyChartType: string;
|
|
339
|
+
curviness: string;
|
|
340
|
+
nodesBorderVisibility: boolean;
|
|
341
|
+
nodesBorderThickness: string;
|
|
342
|
+
nodesBorderColor: string;
|
|
343
|
+
nodeBorderStyle: string;
|
|
344
|
+
nodesLabelVisibility: boolean;
|
|
345
|
+
nodesLabelFontSize: string;
|
|
346
|
+
nodesLabelFontFamily: string;
|
|
347
|
+
nodesLabelFontStyle: any[];
|
|
348
|
+
nodeLabelNumberFormat: string;
|
|
349
|
+
nodeLabelDecimalPrecision: string;
|
|
350
|
+
nodesLabelColor: string;
|
|
351
|
+
nodesLabelDisplayUnits: string;
|
|
352
|
+
nodesLabelOverlap: boolean;
|
|
353
|
+
nodesLabelWrap: boolean;
|
|
354
|
+
nodeHeight: string;
|
|
355
|
+
nodeWidth: string;
|
|
356
|
+
nodeType: string;
|
|
357
|
+
nodesBorderRadius: string;
|
|
358
|
+
dataLabelValueColor: string;
|
|
359
|
+
dataLabelValueFontSize: string;
|
|
360
|
+
dataLabelValueFontFamily: string;
|
|
361
|
+
dataLabelNumberFormat: string;
|
|
362
|
+
dataLabelDecimalPrecision: string;
|
|
363
|
+
dataLabelValueStyle: any[];
|
|
364
|
+
nodesLabelFontColor: string;
|
|
365
|
+
nodesDisplayUnits: string;
|
|
366
|
+
percentageVisibility: boolean;
|
|
367
|
+
nodesLabelOverflow: boolean;
|
|
368
|
+
};
|
|
369
|
+
links: {
|
|
370
|
+
linksColor: string;
|
|
371
|
+
linksFillOpacity: string;
|
|
372
|
+
};
|
|
373
|
+
bins: {
|
|
374
|
+
binsGapWidth: string;
|
|
375
|
+
binsFillOpacity: string;
|
|
376
|
+
binsCalculation: string;
|
|
377
|
+
binsCalculationValue: string;
|
|
378
|
+
binsBorderVisibility: boolean;
|
|
379
|
+
binsBorderThickness: string;
|
|
380
|
+
binsBorderColor: string;
|
|
381
|
+
binsBorderOpacity: string;
|
|
382
|
+
};
|
|
383
|
+
connector: {
|
|
384
|
+
connectorVisibility: string;
|
|
385
|
+
connectorFollow: string;
|
|
386
|
+
connectorStepSize: string;
|
|
387
|
+
connectorExclude: any[];
|
|
388
|
+
connectorCustomRange: any[];
|
|
389
|
+
connectorFontSize: string;
|
|
390
|
+
connectorFontFamily: string;
|
|
391
|
+
connectorFontStyle: any[];
|
|
392
|
+
connectorKPI: string;
|
|
393
|
+
connectorNumberFormat: string;
|
|
394
|
+
connectorLineThickness: string;
|
|
395
|
+
connectorLineColor: string;
|
|
396
|
+
connectorMarkerColor: string;
|
|
397
|
+
connectorFontColor: string;
|
|
398
|
+
connectorDecimalPrecision: string;
|
|
399
|
+
connectorDisplayUnits: string;
|
|
400
|
+
connectorStyle: string;
|
|
401
|
+
lineType: string;
|
|
402
|
+
connectorType: string;
|
|
403
|
+
connectorColorOption: string;
|
|
404
|
+
connectorUniformLineColor: string;
|
|
405
|
+
};
|
|
406
|
+
footerNote: {
|
|
407
|
+
footerNoteVisibility: boolean;
|
|
408
|
+
footerNotePosition: string;
|
|
409
|
+
footerNoteFontSize: string;
|
|
410
|
+
footerNoteFontFamily: string;
|
|
411
|
+
footerNoteFontStyle: any[];
|
|
412
|
+
footerNoteFontColor: string;
|
|
413
|
+
footerNoteBorder: boolean;
|
|
414
|
+
footerNoteBorderThickness: string;
|
|
415
|
+
footerNoteBorderColor: string;
|
|
416
|
+
};
|
|
417
|
+
pieofPie: {
|
|
418
|
+
pieOfPieDataLabels: boolean;
|
|
419
|
+
pieOfPieDataLabelValue: boolean;
|
|
420
|
+
pieOfPieAbsoluteValue: boolean;
|
|
421
|
+
pieOfPieValueColor: string;
|
|
422
|
+
pieOfPieValueFontSize: string;
|
|
423
|
+
pieOfPieValueFontFamily: string;
|
|
424
|
+
pieOfPieValueFontStyle: any[];
|
|
425
|
+
pieOfPieNumberFormat: string;
|
|
426
|
+
pieOfPieName: boolean;
|
|
427
|
+
pieOfPieNameColor: string;
|
|
428
|
+
pieOfPieNameFontSize: string;
|
|
429
|
+
pieOfPieNameFontFamily: string;
|
|
430
|
+
pieOfPieNameFontStyle: any[];
|
|
431
|
+
pieOfPieRadius: number;
|
|
432
|
+
pieOfPieLineWidth: string;
|
|
433
|
+
pieOfPieLineColor: string;
|
|
434
|
+
pointerValueDecimalPrecision: string;
|
|
435
|
+
displayUnits: string;
|
|
436
|
+
};
|
|
437
|
+
text: {
|
|
438
|
+
textFontFamily: string;
|
|
439
|
+
textSpacing: string;
|
|
440
|
+
textRotation: number;
|
|
441
|
+
};
|
|
442
|
+
colorScale: {
|
|
443
|
+
showColor: string;
|
|
444
|
+
startColor: string;
|
|
445
|
+
endColor: string;
|
|
446
|
+
division1: string;
|
|
447
|
+
division2: string;
|
|
448
|
+
division3: string;
|
|
449
|
+
division4: string;
|
|
450
|
+
division5: string;
|
|
451
|
+
division6: string;
|
|
452
|
+
division7: string;
|
|
453
|
+
division8: string;
|
|
454
|
+
division9: string;
|
|
455
|
+
division10: string;
|
|
456
|
+
};
|
|
457
|
+
customScaling: {
|
|
458
|
+
warningTextDummyNode: boolean;
|
|
459
|
+
customScalingtoggle: boolean;
|
|
460
|
+
division1: string;
|
|
461
|
+
share1: string;
|
|
462
|
+
division2: string;
|
|
463
|
+
share2: string;
|
|
464
|
+
division3: string;
|
|
465
|
+
share3: string;
|
|
466
|
+
division4: string;
|
|
467
|
+
share4: string;
|
|
468
|
+
division5: string;
|
|
469
|
+
share5: string;
|
|
470
|
+
division6: string;
|
|
471
|
+
share6: string;
|
|
472
|
+
division7: string;
|
|
473
|
+
share7: string;
|
|
474
|
+
division8: string;
|
|
475
|
+
share8: string;
|
|
476
|
+
division9: string;
|
|
477
|
+
share9: string;
|
|
478
|
+
division10: string;
|
|
479
|
+
share10: string;
|
|
480
|
+
};
|
|
481
|
+
colorScaleForMaps: {
|
|
482
|
+
defaultColor: string;
|
|
483
|
+
showColorForMaps: string;
|
|
484
|
+
startColorForMaps: string;
|
|
485
|
+
endColorForMaps: string;
|
|
486
|
+
};
|
|
487
|
+
pointerValue: {
|
|
488
|
+
showPointerValue: boolean;
|
|
489
|
+
pointerValueNumberFormat: string;
|
|
490
|
+
pointerValueDecimalPrecision: string;
|
|
491
|
+
connectorKPIforSpeedometer: string;
|
|
492
|
+
kpiAlias: boolean;
|
|
493
|
+
kpiAliasText: string;
|
|
494
|
+
pointerValueDisplayUnits: string;
|
|
495
|
+
pointerValueFontSize: string;
|
|
496
|
+
pointerValueFontFamily: string;
|
|
497
|
+
pointerValueFontStyle: any[];
|
|
498
|
+
pointerValueColor: string;
|
|
499
|
+
pointerValueAlias: boolean;
|
|
500
|
+
pointerValueAliasText: string;
|
|
501
|
+
};
|
|
502
|
+
customTextAnnotations: {
|
|
503
|
+
customTextAnnotationObject: any[];
|
|
504
|
+
hiddenProperty: any[];
|
|
505
|
+
};
|
|
506
|
+
dataLabelOverlappingToggle: {
|
|
507
|
+
dataLabelOverlap: boolean;
|
|
508
|
+
};
|
|
509
|
+
widgetIndexing: {
|
|
510
|
+
widgetVisibility: boolean;
|
|
511
|
+
widgetIndex: number;
|
|
512
|
+
};
|
|
513
|
+
bubbleformatting: {
|
|
514
|
+
showBubble: boolean;
|
|
515
|
+
bubbleColor: string;
|
|
516
|
+
bubbleBorderColor: string;
|
|
517
|
+
bubbleBorderWidth: string;
|
|
518
|
+
bubbleOpacity: string;
|
|
519
|
+
};
|
|
520
|
+
colorScaleForMapsBubble: {
|
|
521
|
+
showColorForMapsBubble: string;
|
|
522
|
+
startColorForMapsBubble: string;
|
|
523
|
+
endColorForMapsBubble: string;
|
|
524
|
+
};
|
|
525
|
+
columnBreakLine: {
|
|
526
|
+
breakLineVisibility: boolean;
|
|
527
|
+
breakLineColor: string;
|
|
528
|
+
breakLineWidth: string;
|
|
529
|
+
breakLineStyle: string;
|
|
530
|
+
};
|
|
531
|
+
undoRedo: {
|
|
532
|
+
isFromUndo: boolean;
|
|
533
|
+
isFromOnChange: boolean;
|
|
534
|
+
};
|
|
535
|
+
switchChartType: {
|
|
536
|
+
allowChartTypeSwitch: boolean;
|
|
537
|
+
};
|
|
538
|
+
column: {
|
|
539
|
+
stackBorderVisibility: boolean;
|
|
540
|
+
stackBorderWidth: string;
|
|
541
|
+
stackBorderColor: string;
|
|
542
|
+
stackBorderStyle: string;
|
|
543
|
+
};
|
|
544
|
+
line: {
|
|
545
|
+
interpolationType: string;
|
|
546
|
+
smoothType: string;
|
|
547
|
+
cardinalTension: string;
|
|
548
|
+
stepPosition: string;
|
|
549
|
+
};
|
|
550
|
+
seriesLabel: {
|
|
551
|
+
seriesLabelVisibility: boolean;
|
|
552
|
+
seriesLabelApplySeries: string;
|
|
553
|
+
seriesLabelFontFamily: string;
|
|
554
|
+
seriesLabelFontSize: string;
|
|
555
|
+
seriesLabelFontStyle: any[];
|
|
556
|
+
seriesLabelBackgroundColor: string;
|
|
557
|
+
seriesLabelPosition: string;
|
|
558
|
+
};
|
|
559
|
+
dataTableProperties: {
|
|
560
|
+
dataTable: boolean;
|
|
561
|
+
dataTableFontSize: string;
|
|
562
|
+
dataTableFontFamily: string;
|
|
563
|
+
dataTableFontStyle: any[];
|
|
564
|
+
dataTableNumberFormat: string;
|
|
565
|
+
dataTableDecimalPrecision: string;
|
|
566
|
+
dataTableDisplayUnits: string;
|
|
567
|
+
dataTableLabelColor: string;
|
|
568
|
+
};
|
|
569
|
+
dataTableOuterBorder: {
|
|
570
|
+
borderButtonVisibility: boolean;
|
|
571
|
+
lineStyle: string;
|
|
572
|
+
lineColor: string;
|
|
573
|
+
lineWidth: string;
|
|
574
|
+
};
|
|
575
|
+
dataTableInnerBorder: {
|
|
576
|
+
verticalBorderLineButton: boolean;
|
|
577
|
+
verticalBorderLineStyle: string;
|
|
578
|
+
verticalBorderLineColor: string;
|
|
579
|
+
verticalBorderLineWidth: string;
|
|
580
|
+
horizontalBorderLineButton: boolean;
|
|
581
|
+
horizontalBorderLineStyle: string;
|
|
582
|
+
horizontalBorderLineColor: string;
|
|
583
|
+
horizontalBorderLineWidth: string;
|
|
584
|
+
};
|
|
585
|
+
chartPadding: {
|
|
586
|
+
paddingArrayLTRB: number[];
|
|
587
|
+
};
|
|
588
|
+
};
|
|
589
|
+
export declare const chartMargins: {
|
|
590
|
+
top: number;
|
|
591
|
+
right: number;
|
|
592
|
+
bottom: number;
|
|
593
|
+
left: number;
|
|
594
|
+
};
|
|
595
|
+
export type TDefaultChartFormatOptionsType = typeof defaultChartFormatOptions;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function logError(fileName: string, funcName: string, msg: unknown): void;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import "./Components/Charts/Core/ChartStyles.scss";
|
|
2
|
+
export { default as ColumnChart } from "./Components/Charts/ChartsWithAxis/ColumnFamily/ColumnChart";
|
|
3
|
+
export { default as CustomColumnChart } from "./Components/Charts/ChartsWithAxis/ColumnFamily/CustomColumnChart";
|
|
4
|
+
export { default as LayeredColumnChart } from "./Components/Charts/ChartsWithAxis/ColumnFamily/LayeredColumnChart";
|
|
5
|
+
export { default as StackColumnChart } from "./Components/Charts/ChartsWithAxis/ColumnFamily/StackColumnChart";
|
|
6
|
+
export { default as NormalizedStackColumnChart } from "./Components/Charts/ChartsWithAxis/ColumnFamily/NormalizedStackColumnChart";
|
|
7
|
+
export { default as ColumnHistogramChart } from "./Components/Charts/ChartsWithAxis/ColumnFamily/ColumnHistogramChart";
|
|
8
|
+
export { default as LineChart } from "./Components/Charts/ChartsWithAxis/LineFamily/LineChart";
|
|
9
|
+
export { default as StackLineChart } from "./Components/Charts/ChartsWithAxis/LineFamily/StackLineChart";
|
|
10
|
+
export { default as NormalizedStackLineChart } from "./Components/Charts/ChartsWithAxis/LineFamily/NormalizedStackLineChart";
|
|
11
|
+
export { default as HorizontalBarChart } from "./Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalBarChart";
|
|
12
|
+
export { default as StackHorizontalBarChart } from "./Components/Charts/ChartsWithAxis/HorizontalBarFamily/StackHorizontalBarChart";
|
|
13
|
+
export { default as NormalizedStackHorizontalBarChart } from "./Components/Charts/ChartsWithAxis/HorizontalBarFamily/NormalizedStackHorizontalBarChart";
|
|
14
|
+
export { default as LayeredHorizontalBarChart } from "./Components/Charts/ChartsWithAxis/HorizontalBarFamily/LayeredHorizontalBarChart";
|
|
15
|
+
export { default as HorizontalHistogramChart } from "./Components/Charts/ChartsWithAxis/HorizontalBarFamily/HorizontalHistogramChart";
|
|
16
|
+
export { default as AreaChart } from "./Components/Charts/ChartsWithAxis/AreaFamily/AreaChart";
|
|
17
|
+
export { default as StackAreaChart } from "./Components/Charts/ChartsWithAxis/AreaFamily/StackAreaChart";
|
|
18
|
+
export { default as NormalizedStackAreaChart } from "./Components/Charts/ChartsWithAxis/AreaFamily/NormalizedStackAreaChart";
|
|
19
|
+
export { default as PieChart } from "./Components/Charts/ChartsWithoutAxis/PieFamily/PieChart";
|
|
20
|
+
export { default as DonutChart } from "./Components/Charts/ChartsWithoutAxis/PieFamily/DonutChart";
|
|
21
|
+
export { default as Treemap } from "./Components/Charts/ChartsWithoutAxis/PieFamily/TreemapChart";
|
|
22
|
+
export { default as PieofPie } from "./Components/Charts/ChartsWithoutAxis/PieFamily/PieofPieChart";
|
|
23
|
+
export { default as PyramidChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/PyramidChart";
|
|
24
|
+
export { default as ProgressChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/ProgressChart";
|
|
25
|
+
export { default as Speedometer } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/Speedometer";
|
|
26
|
+
export { default as RadialBarChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/RadialBarChart";
|
|
27
|
+
export { default as WordCloud } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/WordCloud";
|
|
28
|
+
export { default as VennChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/VennChart";
|
|
29
|
+
export { default as SankeyChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/SankeyChart";
|
|
30
|
+
export { default as Maps } from "./Components/Charts/ChartsWithoutAxis/Maps/Maps";
|
|
31
|
+
export { default as OrganizationChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/OrganizationChart";
|
|
32
|
+
export { default as BubbleChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/BubbleChart";
|
|
33
|
+
export { default as ScatterChart } from "./Components/Charts/ChartsWithoutAxis/OtherCharts/ScatterChart";
|
|
34
|
+
export { default as WaterfallChart } from "./Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/WaterfallChart";
|
|
35
|
+
export { default as TornadoChart } from "./Components/Charts/ChartsWithAxis/MiscellaneousChartFamily/TornadoChart";
|