pace-chart-lib 0.0.12 → 1.0.1

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