pace-chart-lib 1.0.22 → 1.0.24
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 +3 -1
- package/dist/Components/Charts/ChartsWithAxis/ChartsWithAxisTypes.types.d.ts +5 -1
- package/dist/Components/Charts/Core/Common.types.d.ts +33 -4
- package/dist/Components/Charts/Core/CommonFunctions.d.ts +4 -4
- package/dist/Components/Charts/Core/DefaultChartDataProperties.d.ts +5 -4
- package/dist/Components/Charts/Core/DefaultProperties.types.d.ts +50 -49
- package/dist/pace-chart-lib.es.js +1321 -733
- package/dist/pace-chart-lib.umd.js +1321 -733
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as d3 from "d3";
|
|
2
|
-
import { TSeries } from "../Core/Common.types";
|
|
2
|
+
import { TData, TSeries } from "../Core/Common.types";
|
|
3
3
|
import { TDefaultChartFormatOptionsType } from "../Core/DefaultProperties.types";
|
|
4
4
|
import { TChartJSON, TMargin } from "./ChartsWithAxisTypes.types";
|
|
5
5
|
/**
|
|
@@ -648,3 +648,5 @@ export declare function calculateVisibleBars(innerWidth: number, formatOptions:
|
|
|
648
648
|
};
|
|
649
649
|
export declare const clamp: (v: any, a: any, b: any) => number;
|
|
650
650
|
export declare const horizontalScrollBar: (seriesData: any, height: any, width: any, svg: any, margin: any, innerWidth: any, scrollbarVisible: any, visibleBars: any, chartJSON: any, scrollPosition: any, isStackedChart: any, setAndUpdateChartData: any, isBarChart?: boolean) => void;
|
|
651
|
+
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;
|
|
652
|
+
export declare function createTotalMeasureValueMap(data: TData, totalValueMap: Map<string, number>, filteredDimension: string[]): void;
|
|
@@ -41,7 +41,11 @@ export declare enum chartTypes {
|
|
|
41
41
|
OrganizationChart = "OrganizationChart",
|
|
42
42
|
PyramidChart = "PyramidChart",
|
|
43
43
|
ProgressChart = "ProgressChart",
|
|
44
|
-
RadialBarChart = "RadialBarChart"
|
|
44
|
+
RadialBarChart = "RadialBarChart",
|
|
45
|
+
CombinationLine = "CombinationLine",
|
|
46
|
+
CombinationArea = "CombinationArea",
|
|
47
|
+
CombinationStackArea = "CombinationStackArea",
|
|
48
|
+
TornadoDefaultEntry = "defaultEntry"
|
|
45
49
|
}
|
|
46
50
|
export type TChartProps = {
|
|
47
51
|
data: TData;
|
|
@@ -13,13 +13,28 @@ export declare enum connectedStyle {
|
|
|
13
13
|
"dashed" = 7
|
|
14
14
|
}
|
|
15
15
|
export declare enum staticLineStyle {
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
16
|
+
"none" = "None",
|
|
17
|
+
"solid" = "Solid",
|
|
18
|
+
"dotted" = "Dotted",
|
|
19
|
+
"dashed" = "Dashed"
|
|
19
20
|
}
|
|
20
|
-
|
|
21
|
+
export declare enum strokeLineCap {
|
|
22
|
+
"butt" = "butt",
|
|
23
|
+
"round" = "round",
|
|
24
|
+
"square" = "square"
|
|
25
|
+
}
|
|
26
|
+
export declare enum axisTypes {
|
|
27
|
+
"primary" = "Primary",
|
|
28
|
+
"secondary" = "Secondary"
|
|
29
|
+
}
|
|
30
|
+
export declare enum visibilityCondition {
|
|
31
|
+
"visible" = "visible",
|
|
32
|
+
"hidden" = "hidden"
|
|
33
|
+
}
|
|
34
|
+
export declare const strokeDashValues = "20,10,5,5,5,10";
|
|
21
35
|
import * as d3 from "d3";
|
|
22
36
|
import * as d3Annotation from "d3-svg-annotation";
|
|
37
|
+
import { defaultChartFormatOptions } from "./DefaultProperties.types";
|
|
23
38
|
export type TTextMeasureOptions = {
|
|
24
39
|
content: string;
|
|
25
40
|
fontSize?: number;
|
|
@@ -267,6 +282,10 @@ export declare enum horizontalLegendAllignment {
|
|
|
267
282
|
end = "End"
|
|
268
283
|
}
|
|
269
284
|
export type TSeries = {
|
|
285
|
+
legendUniqueId: any;
|
|
286
|
+
Type: any;
|
|
287
|
+
Axis: any;
|
|
288
|
+
AxisDataList: any;
|
|
270
289
|
legend: string;
|
|
271
290
|
data: TDataPoint[];
|
|
272
291
|
properties?: TLegendEntry;
|
|
@@ -369,4 +388,14 @@ export type TScatterChartProps = {
|
|
|
369
388
|
colorsList: TLegendsFormatting[];
|
|
370
389
|
formatOptions: TDefaultChartFormatOptionsType;
|
|
371
390
|
};
|
|
391
|
+
export declare enum commonColors {
|
|
392
|
+
white = "#FFFFFF",
|
|
393
|
+
black = "#000000",
|
|
394
|
+
transparent = "#FFFFFF00"
|
|
395
|
+
}
|
|
396
|
+
export declare enum tornadoEntryName {
|
|
397
|
+
positive = "Positive",
|
|
398
|
+
negative = "Negative",
|
|
399
|
+
default = "defaultEntry"
|
|
400
|
+
}
|
|
372
401
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as d3 from "d3";
|
|
2
2
|
import type { TChartJSON } from "../ChartsWithAxis/ChartsWithAxisTypes.types";
|
|
3
|
-
import { type TAnnotationObject, type TChartMargins, type TDefaultChartFormatOptionsType, type TSeries, type TTextDimensions } from "./Common.types";
|
|
4
3
|
import { TVennSeries } from "../ChartsWithoutAxis/ChartsWithoutAxisTypes.types";
|
|
4
|
+
import { type TAnnotationObject, type TChartMargins, type TDefaultChartFormatOptionsType, type TSeries, type TTextDimensions } from "./Common.types";
|
|
5
5
|
export declare const svgID = "scaling-svg-";
|
|
6
6
|
export declare function getRandomColor(): {
|
|
7
7
|
color: string;
|
|
@@ -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, seriesData: TSeries[], chartId: string, legendShape: string, chartType?: 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.
|
|
@@ -51,7 +51,7 @@ export declare function calculateMaxLegendWidth(list: string[], formatOptions: T
|
|
|
51
51
|
*
|
|
52
52
|
* @returns {void} This function does not return a value; it appends and updates SVG marker elements in the DOM.
|
|
53
53
|
*/
|
|
54
|
-
export declare function lineMarkers(lines: any, chartData: TSeries[], type:
|
|
54
|
+
export declare function lineMarkers(lines: any, chartData: TSeries[], type: any, xScale: any, yScale: any, yScaleRight: any, tooltipHandle: any, formatOptions: TDefaultChartFormatOptionsType, chartJSON: TChartJSON, secondaryCustomYaxisMaxValue: number, secondaryCustomYaxisMinValue: number, customYaxisMinValue: number, customYaxisMaxValue: number, isNormalizedChart: boolean): void;
|
|
55
55
|
/**
|
|
56
56
|
* Attaches hover interactions to the area chart elements to show markers and tooltips
|
|
57
57
|
* when the user moves the mouse over the chart.
|
|
@@ -234,7 +234,7 @@ export declare const marginCalculationsForChartsWithoutLegends: (chartFormatOpti
|
|
|
234
234
|
innerWidth: number;
|
|
235
235
|
};
|
|
236
236
|
export declare const convertStringToNumber: (value: any) => any;
|
|
237
|
-
export declare function generalizedChartData(chartData: any, dimensionList?: any): any;
|
|
237
|
+
export declare function generalizedChartData(chartData: any, dimensionList?: any, isTornadoChart?: boolean): any;
|
|
238
238
|
export declare const getJQuerySelector: (strSeletor?: string) => string;
|
|
239
239
|
export declare const connectorNumberFormat: (numerator: any, denominator: any, decimalValues: any, numberFormat: any, x: any, y: any, formatOptions: TDefaultChartFormatOptionsType) => any;
|
|
240
240
|
export declare const getHoverId: (inputText: string) => string;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import { axisTypes, commonColors } from "./Common.types";
|
|
1
2
|
export declare const chartProperties: {
|
|
2
3
|
color: string;
|
|
3
4
|
name: string;
|
|
4
5
|
type: string;
|
|
5
|
-
axis:
|
|
6
|
+
axis: axisTypes;
|
|
6
7
|
alias: string;
|
|
7
8
|
fontSize: number;
|
|
8
9
|
fontStyle: any[];
|
|
9
10
|
fontFamily: string;
|
|
10
|
-
labelColor:
|
|
11
|
+
labelColor: commonColors;
|
|
11
12
|
hideZeroValues: boolean;
|
|
12
13
|
markerShape: string;
|
|
13
14
|
lineStyle: string;
|
|
@@ -41,7 +42,7 @@ export declare const chartProperties: {
|
|
|
41
42
|
valueFontStyle: any[];
|
|
42
43
|
valueFont: string;
|
|
43
44
|
valueFontColor: string;
|
|
44
|
-
backgroundColor:
|
|
45
|
+
backgroundColor: commonColors;
|
|
45
46
|
nodeHeight: number;
|
|
46
47
|
nodeWidth: number;
|
|
47
48
|
setColorScale: boolean;
|
|
@@ -52,7 +53,7 @@ export declare const chartProperties: {
|
|
|
52
53
|
actualChartType: string;
|
|
53
54
|
secondaryAxisBgColor: string;
|
|
54
55
|
stackBorderWidth: number;
|
|
55
|
-
stackBorderColor:
|
|
56
|
+
stackBorderColor: commonColors;
|
|
56
57
|
stackBorderStyle: number;
|
|
57
58
|
seriesLabelVisibility: boolean;
|
|
58
59
|
individualAnnotationVisibility: string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { commonColors } from "./Common.types";
|
|
1
2
|
export declare const defaultChartFormatOptions: {
|
|
2
3
|
chartDescription: {
|
|
3
4
|
chartDescriptionVisibility: boolean;
|
|
@@ -5,10 +6,10 @@ export declare const defaultChartFormatOptions: {
|
|
|
5
6
|
chartDescriptionId: string;
|
|
6
7
|
};
|
|
7
8
|
chartArea: {
|
|
8
|
-
chartAreaColor:
|
|
9
|
+
chartAreaColor: commonColors;
|
|
9
10
|
chartAreaBorder: boolean;
|
|
10
11
|
chartAreaBorderThickness: string;
|
|
11
|
-
chartAreaBorderColor:
|
|
12
|
+
chartAreaBorderColor: commonColors;
|
|
12
13
|
chartAreaBorderStyle: string;
|
|
13
14
|
};
|
|
14
15
|
chartTitle: {
|
|
@@ -16,20 +17,20 @@ export declare const defaultChartFormatOptions: {
|
|
|
16
17
|
chartTitleFontSize: string;
|
|
17
18
|
chartTitleFontFamily: string;
|
|
18
19
|
chartTitleFontStyle: any[];
|
|
19
|
-
chartTitleColor:
|
|
20
|
+
chartTitleColor: commonColors;
|
|
20
21
|
chartTitleText: string;
|
|
21
22
|
dynamicTitleText: string;
|
|
22
23
|
chartTitleHTML: string;
|
|
23
24
|
};
|
|
24
25
|
xAxisLabel: {
|
|
25
26
|
xAxisLabelVisibility: boolean;
|
|
26
|
-
xAxisColor:
|
|
27
|
-
xAxisColorInverted:
|
|
27
|
+
xAxisColor: commonColors;
|
|
28
|
+
xAxisColorInverted: commonColors;
|
|
28
29
|
xAxisWidth: string;
|
|
29
30
|
xAxisLabelFontSize: string;
|
|
30
31
|
xAxisLabelFontFamily: string;
|
|
31
32
|
xAxisLabelFontStyle: any[];
|
|
32
|
-
xAxisLabelColor:
|
|
33
|
+
xAxisLabelColor: commonColors;
|
|
33
34
|
xAxisNumberFormat: string;
|
|
34
35
|
xAxisQuarterFormat: string;
|
|
35
36
|
xAxisDisplayUnits: string;
|
|
@@ -60,7 +61,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
60
61
|
xAxisTitleFontSize: string;
|
|
61
62
|
xAxisTitleFontFamily: string;
|
|
62
63
|
xAxisTitleFontStyle: any[];
|
|
63
|
-
xAxisTitleColor:
|
|
64
|
+
xAxisTitleColor: commonColors;
|
|
64
65
|
xAxisTitleText: string;
|
|
65
66
|
xAxisDynamicTitleText: string;
|
|
66
67
|
xAxisTitleHTML: string;
|
|
@@ -71,13 +72,13 @@ export declare const defaultChartFormatOptions: {
|
|
|
71
72
|
};
|
|
72
73
|
yAxisLabel: {
|
|
73
74
|
yAxisLabelVisibility: boolean;
|
|
74
|
-
yAxisColor:
|
|
75
|
-
yAxisColorInverted:
|
|
75
|
+
yAxisColor: commonColors;
|
|
76
|
+
yAxisColorInverted: commonColors;
|
|
76
77
|
yAxisWidth: string;
|
|
77
78
|
yAxisLabelFontSize: string;
|
|
78
79
|
yAxisLabelFontFamily: string;
|
|
79
80
|
yAxisLabelFontStyle: any[];
|
|
80
|
-
yAxisLabelColor:
|
|
81
|
+
yAxisLabelColor: commonColors;
|
|
81
82
|
yAxisNumberFormat: string;
|
|
82
83
|
yAxisDisplayUnits: string;
|
|
83
84
|
yAxisLabelRotation: number;
|
|
@@ -102,19 +103,19 @@ export declare const defaultChartFormatOptions: {
|
|
|
102
103
|
yAxisTitleFontSize: string;
|
|
103
104
|
yAxisTitleFontFamily: string;
|
|
104
105
|
yAxisTitleFontStyle: any[];
|
|
105
|
-
yAxisTitleColor:
|
|
106
|
+
yAxisTitleColor: commonColors;
|
|
106
107
|
yAxisTitleText: string;
|
|
107
108
|
yAxisDynamicTitleText: string;
|
|
108
109
|
yAxisTitleHTML: string;
|
|
109
110
|
};
|
|
110
111
|
secondaryYAxisLabel: {
|
|
111
112
|
secondaryYAxisLabelVisibility: boolean;
|
|
112
|
-
secondaryYAxisColor:
|
|
113
|
+
secondaryYAxisColor: commonColors;
|
|
113
114
|
secondaryYAxisWidth: string;
|
|
114
115
|
secondaryYAxisLabelFontSize: string;
|
|
115
116
|
secondaryYAxisLabelFontFamily: string;
|
|
116
117
|
secondaryYAxisLabelFontStyle: any[];
|
|
117
|
-
secondaryYAxisLabelColor:
|
|
118
|
+
secondaryYAxisLabelColor: commonColors;
|
|
118
119
|
secondaryYAxisNumberFormat: string;
|
|
119
120
|
secondaryYAxisDisplayUnits: string;
|
|
120
121
|
secondaryYAxisDisplayUnitsLabel: boolean;
|
|
@@ -132,7 +133,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
132
133
|
secondaryYAxisTitleFontSize: string;
|
|
133
134
|
secondaryYAxisTitleFontFamily: string;
|
|
134
135
|
secondaryYAxisTitleFontStyle: any[];
|
|
135
|
-
secondaryYAxisTitleColor:
|
|
136
|
+
secondaryYAxisTitleColor: commonColors;
|
|
136
137
|
secondaryYAxisTitleText: string;
|
|
137
138
|
secondaryYAxisDynamicTitleText: string;
|
|
138
139
|
secondaryYAxisTitleHTML: string;
|
|
@@ -157,17 +158,17 @@ export declare const defaultChartFormatOptions: {
|
|
|
157
158
|
legendFontStyle: any[];
|
|
158
159
|
legendBorder: boolean;
|
|
159
160
|
legendBorderThickness: string;
|
|
160
|
-
legendBorderColor:
|
|
161
|
-
vennLabelColor:
|
|
161
|
+
legendBorderColor: commonColors;
|
|
162
|
+
vennLabelColor: commonColors;
|
|
162
163
|
onHoverEffect: boolean;
|
|
163
164
|
legendColorMode: string;
|
|
164
|
-
legendSelectedUnicolor:
|
|
165
|
+
legendSelectedUnicolor: commonColors;
|
|
165
166
|
};
|
|
166
167
|
plotArea: {
|
|
167
|
-
plotAreaColor:
|
|
168
|
+
plotAreaColor: commonColors;
|
|
168
169
|
plotAreaBorder: boolean;
|
|
169
170
|
plotAreaBorderThickness: string;
|
|
170
|
-
plotAreaBorderColor:
|
|
171
|
+
plotAreaBorderColor: commonColors;
|
|
171
172
|
plotAreaGapWidth: string;
|
|
172
173
|
plotAreaSeriesWidth: string;
|
|
173
174
|
plotAreaBarWidth: string;
|
|
@@ -188,21 +189,21 @@ export declare const defaultChartFormatOptions: {
|
|
|
188
189
|
dataLabelsforMaps: boolean;
|
|
189
190
|
dataLabelPosition: string;
|
|
190
191
|
dataLabelSize: string;
|
|
191
|
-
dataLabelValueColor:
|
|
192
|
+
dataLabelValueColor: commonColors;
|
|
192
193
|
dataLabelValueFontSize: string;
|
|
193
194
|
dataLabelValueFontFamily: string;
|
|
194
195
|
dataLabelValueFontStyle: any[];
|
|
195
196
|
dataLabelNumberFormat: string;
|
|
196
197
|
dataLabelNumberFormatProgress: string;
|
|
197
198
|
axialAxis: boolean;
|
|
198
|
-
axialAxisDataLabelColor:
|
|
199
|
+
axialAxisDataLabelColor: commonColors;
|
|
199
200
|
axialAxisDataLabelFontSize: string;
|
|
200
201
|
axialAxisDataLabelFontFamily: string;
|
|
201
202
|
axialAxisDataLabelFontStyle: any[];
|
|
202
203
|
axialAxisDataLabelNumberFormat: string;
|
|
203
204
|
axialAxisDataLabelDecimalPrecision: string;
|
|
204
205
|
dataLabelDecimalPrecision: string;
|
|
205
|
-
dataLabelNameColor:
|
|
206
|
+
dataLabelNameColor: commonColors;
|
|
206
207
|
dataLabelNameFontSize: string;
|
|
207
208
|
dataLabelNameFontFamily: string;
|
|
208
209
|
dataLabelNameFontStyle: any[];
|
|
@@ -215,7 +216,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
215
216
|
arcTransition: boolean;
|
|
216
217
|
innerRadiusForSpeedometer: string;
|
|
217
218
|
ticks: string;
|
|
218
|
-
pointerColor:
|
|
219
|
+
pointerColor: commonColors;
|
|
219
220
|
pointerHeadLength: string;
|
|
220
221
|
totalColor: string;
|
|
221
222
|
positiveColor: string;
|
|
@@ -226,14 +227,14 @@ export declare const defaultChartFormatOptions: {
|
|
|
226
227
|
bubbleSizeIndex: string;
|
|
227
228
|
scatterSizeIndex: string;
|
|
228
229
|
hideZeroValues: boolean;
|
|
229
|
-
boxLineColor:
|
|
230
|
+
boxLineColor: commonColors;
|
|
230
231
|
boxLineWidth: string;
|
|
231
232
|
boxOutlier: boolean;
|
|
232
233
|
boxOutlierRadius: string;
|
|
233
234
|
plotAreaShowTrendLine: boolean;
|
|
234
235
|
plotAreaTrendLine: string;
|
|
235
236
|
plotAreaTrendLineWidth: string;
|
|
236
|
-
plotAreaTrendLineColor:
|
|
237
|
+
plotAreaTrendLineColor: commonColors;
|
|
237
238
|
opacity: string;
|
|
238
239
|
plotAreaCalculatedHigh: string;
|
|
239
240
|
plotAreaCalculatedLow: string;
|
|
@@ -247,7 +248,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
247
248
|
totalAlias: boolean;
|
|
248
249
|
totalAliasText: string;
|
|
249
250
|
refLineBorderThickness: string;
|
|
250
|
-
refLineBorderColor:
|
|
251
|
+
refLineBorderColor: commonColors;
|
|
251
252
|
flipPyramid: boolean;
|
|
252
253
|
opacityforProgressScale: string;
|
|
253
254
|
opacityforProgressGoal: string;
|
|
@@ -273,7 +274,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
273
274
|
markerSize: string;
|
|
274
275
|
markerShape: string;
|
|
275
276
|
lineWidth: string;
|
|
276
|
-
markerColor:
|
|
277
|
+
markerColor: commonColors;
|
|
277
278
|
};
|
|
278
279
|
annotation: {
|
|
279
280
|
annotationDraggable: boolean;
|
|
@@ -285,7 +286,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
285
286
|
annotationVisibility: string;
|
|
286
287
|
annotationPosition: string;
|
|
287
288
|
annotationNumberFormat: string;
|
|
288
|
-
annotationColor:
|
|
289
|
+
annotationColor: commonColors;
|
|
289
290
|
annotationFontSize: string;
|
|
290
291
|
annotationFontFamily: string;
|
|
291
292
|
annotationFontStyle: any[];
|
|
@@ -306,7 +307,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
306
307
|
connectorStyle: string;
|
|
307
308
|
dataLabelsCoordinates: any[];
|
|
308
309
|
totalNumberFormat: string;
|
|
309
|
-
totalColor:
|
|
310
|
+
totalColor: commonColors;
|
|
310
311
|
totalFontSize: string;
|
|
311
312
|
totalFontFamily: string;
|
|
312
313
|
totalFontStyle: any[];
|
|
@@ -339,7 +340,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
339
340
|
curviness: string;
|
|
340
341
|
nodesBorderVisibility: boolean;
|
|
341
342
|
nodesBorderThickness: string;
|
|
342
|
-
nodesBorderColor:
|
|
343
|
+
nodesBorderColor: commonColors;
|
|
343
344
|
nodeBorderStyle: string;
|
|
344
345
|
nodesLabelVisibility: boolean;
|
|
345
346
|
nodesLabelFontSize: string;
|
|
@@ -347,7 +348,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
347
348
|
nodesLabelFontStyle: any[];
|
|
348
349
|
nodeLabelNumberFormat: string;
|
|
349
350
|
nodeLabelDecimalPrecision: string;
|
|
350
|
-
nodesLabelColor:
|
|
351
|
+
nodesLabelColor: commonColors;
|
|
351
352
|
nodesLabelDisplayUnits: string;
|
|
352
353
|
nodesLabelOverlap: boolean;
|
|
353
354
|
nodesLabelWrap: boolean;
|
|
@@ -355,13 +356,13 @@ export declare const defaultChartFormatOptions: {
|
|
|
355
356
|
nodeWidth: string;
|
|
356
357
|
nodeType: string;
|
|
357
358
|
nodesBorderRadius: string;
|
|
358
|
-
dataLabelValueColor:
|
|
359
|
+
dataLabelValueColor: commonColors;
|
|
359
360
|
dataLabelValueFontSize: string;
|
|
360
361
|
dataLabelValueFontFamily: string;
|
|
361
362
|
dataLabelNumberFormat: string;
|
|
362
363
|
dataLabelDecimalPrecision: string;
|
|
363
364
|
dataLabelValueStyle: any[];
|
|
364
|
-
nodesLabelFontColor:
|
|
365
|
+
nodesLabelFontColor: commonColors;
|
|
365
366
|
nodesDisplayUnits: string;
|
|
366
367
|
percentageVisibility: boolean;
|
|
367
368
|
nodesLabelOverflow: boolean;
|
|
@@ -377,7 +378,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
377
378
|
binsCalculationValue: string;
|
|
378
379
|
binsBorderVisibility: boolean;
|
|
379
380
|
binsBorderThickness: string;
|
|
380
|
-
binsBorderColor:
|
|
381
|
+
binsBorderColor: commonColors;
|
|
381
382
|
binsBorderOpacity: string;
|
|
382
383
|
};
|
|
383
384
|
connector: {
|
|
@@ -393,15 +394,15 @@ export declare const defaultChartFormatOptions: {
|
|
|
393
394
|
connectorNumberFormat: string;
|
|
394
395
|
connectorLineThickness: string;
|
|
395
396
|
connectorLineColor: string;
|
|
396
|
-
connectorMarkerColor:
|
|
397
|
-
connectorFontColor:
|
|
397
|
+
connectorMarkerColor: commonColors;
|
|
398
|
+
connectorFontColor: commonColors;
|
|
398
399
|
connectorDecimalPrecision: string;
|
|
399
400
|
connectorDisplayUnits: string;
|
|
400
401
|
connectorStyle: string;
|
|
401
402
|
lineType: string;
|
|
402
403
|
connectorType: string;
|
|
403
404
|
connectorColorOption: string;
|
|
404
|
-
connectorUniformLineColor:
|
|
405
|
+
connectorUniformLineColor: commonColors;
|
|
405
406
|
};
|
|
406
407
|
footerNote: {
|
|
407
408
|
footerNoteVisibility: boolean;
|
|
@@ -409,28 +410,28 @@ export declare const defaultChartFormatOptions: {
|
|
|
409
410
|
footerNoteFontSize: string;
|
|
410
411
|
footerNoteFontFamily: string;
|
|
411
412
|
footerNoteFontStyle: any[];
|
|
412
|
-
footerNoteFontColor:
|
|
413
|
+
footerNoteFontColor: commonColors;
|
|
413
414
|
footerNoteBorder: boolean;
|
|
414
415
|
footerNoteBorderThickness: string;
|
|
415
|
-
footerNoteBorderColor:
|
|
416
|
+
footerNoteBorderColor: commonColors;
|
|
416
417
|
};
|
|
417
418
|
pieofPie: {
|
|
418
419
|
pieOfPieDataLabels: boolean;
|
|
419
420
|
pieOfPieDataLabelValue: boolean;
|
|
420
421
|
pieOfPieAbsoluteValue: boolean;
|
|
421
|
-
pieOfPieValueColor:
|
|
422
|
+
pieOfPieValueColor: commonColors;
|
|
422
423
|
pieOfPieValueFontSize: string;
|
|
423
424
|
pieOfPieValueFontFamily: string;
|
|
424
425
|
pieOfPieValueFontStyle: any[];
|
|
425
426
|
pieOfPieNumberFormat: string;
|
|
426
427
|
pieOfPieName: boolean;
|
|
427
|
-
pieOfPieNameColor:
|
|
428
|
+
pieOfPieNameColor: commonColors;
|
|
428
429
|
pieOfPieNameFontSize: string;
|
|
429
430
|
pieOfPieNameFontFamily: string;
|
|
430
431
|
pieOfPieNameFontStyle: any[];
|
|
431
432
|
pieOfPieRadius: number;
|
|
432
433
|
pieOfPieLineWidth: string;
|
|
433
|
-
pieOfPieLineColor:
|
|
434
|
+
pieOfPieLineColor: commonColors;
|
|
434
435
|
pointerValueDecimalPrecision: string;
|
|
435
436
|
displayUnits: string;
|
|
436
437
|
};
|
|
@@ -495,7 +496,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
495
496
|
pointerValueFontSize: string;
|
|
496
497
|
pointerValueFontFamily: string;
|
|
497
498
|
pointerValueFontStyle: any[];
|
|
498
|
-
pointerValueColor:
|
|
499
|
+
pointerValueColor: commonColors;
|
|
499
500
|
pointerValueAlias: boolean;
|
|
500
501
|
pointerValueAliasText: string;
|
|
501
502
|
};
|
|
@@ -512,8 +513,8 @@ export declare const defaultChartFormatOptions: {
|
|
|
512
513
|
};
|
|
513
514
|
bubbleformatting: {
|
|
514
515
|
showBubble: boolean;
|
|
515
|
-
bubbleColor:
|
|
516
|
-
bubbleBorderColor:
|
|
516
|
+
bubbleColor: commonColors;
|
|
517
|
+
bubbleBorderColor: commonColors;
|
|
517
518
|
bubbleBorderWidth: string;
|
|
518
519
|
bubbleOpacity: string;
|
|
519
520
|
};
|
|
@@ -524,7 +525,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
524
525
|
};
|
|
525
526
|
columnBreakLine: {
|
|
526
527
|
breakLineVisibility: boolean;
|
|
527
|
-
breakLineColor:
|
|
528
|
+
breakLineColor: commonColors;
|
|
528
529
|
breakLineWidth: string;
|
|
529
530
|
breakLineStyle: string;
|
|
530
531
|
};
|
|
@@ -538,7 +539,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
538
539
|
column: {
|
|
539
540
|
stackBorderVisibility: boolean;
|
|
540
541
|
stackBorderWidth: string;
|
|
541
|
-
stackBorderColor:
|
|
542
|
+
stackBorderColor: commonColors;
|
|
542
543
|
stackBorderStyle: string;
|
|
543
544
|
};
|
|
544
545
|
line: {
|
|
@@ -553,7 +554,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
553
554
|
seriesLabelFontFamily: string;
|
|
554
555
|
seriesLabelFontSize: string;
|
|
555
556
|
seriesLabelFontStyle: any[];
|
|
556
|
-
seriesLabelBackgroundColor:
|
|
557
|
+
seriesLabelBackgroundColor: commonColors;
|
|
557
558
|
seriesLabelPosition: string;
|
|
558
559
|
};
|
|
559
560
|
dataTableProperties: {
|
|
@@ -564,7 +565,7 @@ export declare const defaultChartFormatOptions: {
|
|
|
564
565
|
dataTableNumberFormat: string;
|
|
565
566
|
dataTableDecimalPrecision: string;
|
|
566
567
|
dataTableDisplayUnits: string;
|
|
567
|
-
dataTableLabelColor:
|
|
568
|
+
dataTableLabelColor: commonColors;
|
|
568
569
|
};
|
|
569
570
|
dataTableOuterBorder: {
|
|
570
571
|
borderButtonVisibility: boolean;
|