@cdc/chart 4.24.3 → 4.24.5

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 (39) hide show
  1. package/dist/cdcchart.js +34377 -33726
  2. package/examples/feature/line/line-chart.json +361 -37
  3. package/examples/region-issue.json +2065 -0
  4. package/examples/test.json +5409 -0
  5. package/index.html +13 -11
  6. package/package.json +2 -2
  7. package/src/CdcChart.tsx +159 -89
  8. package/src/_stories/Chart.stories.tsx +8 -0
  9. package/src/_stories/_mock/bar-chart-suppressed.json +474 -0
  10. package/src/components/AreaChart/components/AreaChart.jsx +2 -2
  11. package/src/components/BarChart/components/BarChart.Horizontal.tsx +61 -63
  12. package/src/components/BarChart/components/BarChart.Vertical.tsx +79 -94
  13. package/src/components/DeviationBar.jsx +4 -2
  14. package/src/components/EditorPanel/EditorPanel.tsx +1580 -1924
  15. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +19 -2
  16. package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +0 -1
  17. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +4 -5
  18. package/src/components/EditorPanel/editor-panel.scss +0 -724
  19. package/src/components/EditorPanel/useEditorPermissions.js +4 -1
  20. package/src/components/Legend/Legend.Component.tsx +82 -58
  21. package/src/components/Legend/Legend.tsx +5 -1
  22. package/src/components/LineChart/LineChartProps.ts +13 -6
  23. package/src/components/LineChart/components/LineChart.Circle.tsx +22 -11
  24. package/src/components/LineChart/helpers.ts +134 -10
  25. package/src/components/LineChart/index.tsx +69 -42
  26. package/src/components/LinearChart.jsx +156 -139
  27. package/src/components/ZoomBrush.tsx +40 -21
  28. package/src/data/initial-state.js +4 -4
  29. package/src/hooks/useBarChart.js +47 -22
  30. package/src/hooks/useMinMax.ts +21 -2
  31. package/src/hooks/useScales.ts +33 -1
  32. package/src/hooks/useTooltip.tsx +11 -11
  33. package/src/scss/main.scss +80 -5
  34. package/src/types/ChartConfig.ts +3 -13
  35. package/src/types/ChartContext.ts +4 -0
  36. package/src/_stories/ChartLine.preliminary.tsx +0 -19
  37. package/src/_stories/ChartSuppress.stories.tsx +0 -19
  38. package/src/_stories/_mock/suppress_mock.json +0 -911
  39. package/src/helpers/computeMarginBottom.ts +0 -56
@@ -1,911 +0,0 @@
1
- {
2
- "type": "chart",
3
- "debugSvg": false,
4
- "chartMessage": {
5
- "noData": "No Data Available"
6
- },
7
- "title": "Combo Bar-Line Chart",
8
- "showTitle": true,
9
- "showDownloadMediaButton": false,
10
- "theme": "theme-purple",
11
- "animate": true,
12
- "fontSize": "medium",
13
- "lineDatapointStyle": "hover",
14
- "barHasBorder": "false",
15
- "isLollipopChart": false,
16
- "lollipopShape": "circle",
17
- "lollipopColorStyle": "two-tone",
18
- "visualizationSubType": "regular",
19
- "barStyle": "rounded",
20
- "roundingStyle": "standard",
21
- "tipRounding": "top",
22
- "isResponsiveTicks": false,
23
- "general": {
24
- "showDownloadButton": false
25
- },
26
- "padding": {
27
- "left": 5,
28
- "right": 5
29
- },
30
- "suppressedData": [
31
- {
32
- "label": "masked",
33
- "column": "Data 3",
34
- "value": "100",
35
- "icon": "star"
36
- },
37
- {
38
- "label": "suppressed",
39
- "column": "Data 3",
40
- "value": "-120",
41
- "icon": "star"
42
- }
43
- ],
44
- "yAxis": {
45
- "hideAxis": false,
46
- "displayNumbersOnBar": false,
47
- "hideLabel": false,
48
- "hideTicks": false,
49
- "size": 50,
50
- "gridLines": false,
51
- "enablePadding": false,
52
- "min": "",
53
- "max": "",
54
- "labelColor": "#333",
55
- "tickLabelColor": "#333",
56
- "tickColor": "#333",
57
- "rightHideAxis": true,
58
- "rightAxisSize": 0,
59
- "rightLabel": "",
60
- "rightLabelOffsetSize": 0,
61
- "rightAxisLabelColor": "#333",
62
- "rightAxisTickLabelColor": "#333",
63
- "rightAxisTickColor": "#333",
64
- "numTicks": "",
65
- "axisPadding": 0,
66
- "tickRotation": 0,
67
- "anchors": [],
68
- "type": "chart",
69
- "debugSvg": false,
70
- "chartMessage": {
71
- "noData": "No Data Available"
72
- },
73
- "title": "Combo Bar-Line Chart",
74
- "showTitle": true,
75
- "showDownloadMediaButton": false,
76
- "theme": "theme-purple",
77
- "animate": true,
78
- "fontSize": "medium",
79
- "lineDatapointStyle": "hover",
80
- "barHasBorder": "false",
81
- "isLollipopChart": false,
82
- "lollipopShape": "circle",
83
- "lollipopColorStyle": "two-tone",
84
- "visualizationSubType": "regular",
85
- "barStyle": "",
86
- "roundingStyle": "standard",
87
- "tipRounding": "top",
88
- "isResponsiveTicks": false,
89
- "general": {
90
- "showDownloadButton": false
91
- },
92
- "padding": {
93
- "left": 5,
94
- "right": 5
95
- },
96
- "suppressedData": [
97
- {
98
- "label": "masked",
99
- "column": "Data 3",
100
- "value": "100",
101
- "icon": "star"
102
- }
103
- ],
104
- "yAxis": {
105
- "hideAxis": false,
106
- "displayNumbersOnBar": false,
107
- "hideLabel": false,
108
- "hideTicks": false,
109
- "size": "68",
110
- "gridLines": true,
111
- "enablePadding": false,
112
- "min": "",
113
- "max": "",
114
- "labelColor": "#333",
115
- "tickLabelColor": "#333",
116
- "tickColor": "#333",
117
- "rightHideAxis": true,
118
- "rightAxisSize": 50,
119
- "rightLabel": "",
120
- "rightLabelOffsetSize": 0,
121
- "rightAxisLabelColor": "#333",
122
- "rightAxisTickLabelColor": "#333",
123
- "rightAxisTickColor": "#333",
124
- "numTicks": "",
125
- "axisPadding": 0,
126
- "tickRotation": 0,
127
- "anchors": [],
128
- "label": "Y-Axis Label Example"
129
- },
130
- "boxplot": {
131
- "plots": [],
132
- "borders": "true",
133
- "firstQuartilePercentage": 25,
134
- "thirdQuartilePercentage": 75,
135
- "boxWidthPercentage": 40,
136
- "plotOutlierValues": false,
137
- "plotNonOutlierValues": true,
138
- "legend": {
139
- "showHowToReadText": false,
140
- "howToReadText": ""
141
- },
142
- "labels": {
143
- "q1": "Lower Quartile",
144
- "q2": "q2",
145
- "q3": "Upper Quartile",
146
- "q4": "q4",
147
- "minimum": "Minimum",
148
- "maximum": "Maximum",
149
- "mean": "Mean",
150
- "median": "Median",
151
- "sd": "Standard Deviation",
152
- "iqr": "Interquartile Range",
153
- "total": "Total",
154
- "outliers": "Outliers",
155
- "values": "Values"
156
- }
157
- },
158
- "topAxis": {
159
- "hasLine": false
160
- },
161
- "isLegendValue": false,
162
- "barThickness": 0.35,
163
- "barHeight": 25,
164
- "barSpace": 15,
165
- "heights": {
166
- "vertical": 300,
167
- "horizontal": 585
168
- },
169
- "xAxis": {
170
- "sortDates": false,
171
- "anchors": [],
172
- "type": "date",
173
- "showTargetLabel": true,
174
- "targetLabel": "Target",
175
- "hideAxis": false,
176
- "hideLabel": false,
177
- "hideTicks": false,
178
- "size": "78",
179
- "tickRotation": "25",
180
- "min": "",
181
- "max": "",
182
- "labelColor": "#333",
183
- "tickLabelColor": "#333",
184
- "tickColor": "#333",
185
- "numTicks": "",
186
- "labelOffset": 65,
187
- "axisPadding": 0,
188
- "target": 0,
189
- "maxTickRotation": 0,
190
- "dataKey": "Date",
191
- "label": "X-Axis Example Label",
192
- "dateParseFormat": "%d/%m/%Y",
193
- "dateDisplayFormat": "%d/%m/%Y",
194
- "tickWidthMax": 31
195
- },
196
- "table": {
197
- "label": "Data Table",
198
- "expanded": true,
199
- "limitHeight": false,
200
- "height": "",
201
- "caption": "",
202
- "showDownloadUrl": false,
203
- "showDataTableLink": true,
204
- "indexLabel": "",
205
- "download": true,
206
- "showVertical": false,
207
- "show": true
208
- },
209
- "orientation": "horizontal",
210
- "color": "pinkpurple",
211
- "columns": {},
212
- "legend": {
213
- "hide": false,
214
- "behavior": "highlight",
215
- "singleRow": false,
216
- "colorCode": "",
217
- "reverseLabelOrder": false,
218
- "description": "",
219
- "dynamicLegend": false,
220
- "dynamicLegendDefaultText": "Show All",
221
- "dynamicLegendItemLimit": 5,
222
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
223
- "dynamicLegendChartMessage": "Select Options from the Legend",
224
- "lineMode": false,
225
- "verticalSorted": false,
226
- "position": "right",
227
- "label": "Data Type"
228
- },
229
- "brush": {
230
- "height": 25,
231
- "data": [
232
- {
233
- "Date": "1/15/2016",
234
- "Data 1": "1000",
235
- "Data 2": "110",
236
- "Data 3": "100",
237
- "Data 4": "90",
238
- "Monthly-Goal": "100"
239
- },
240
- {
241
- "Date": "2/15/2016",
242
- "Data 1": "100",
243
- "Data 2": "110",
244
- "Data 3": "100",
245
- "Data 4": "100",
246
- "Monthly-Goal": "100"
247
- },
248
- {
249
- "Date": "3/15/2016",
250
- "Data 1": "80",
251
- "Data 2": "90",
252
- "Data 3": "100",
253
- "Data 4": "120",
254
- "Monthly-Goal": "110"
255
- },
256
- {
257
- "Date": "4/15/2016",
258
- "Data 1": "80",
259
- "Data 2": "90",
260
- "Data 3": "110",
261
- "Data 4": "120",
262
- "Monthly-Goal": "110"
263
- },
264
- {
265
- "Date": "5/15/2016",
266
- "Data 1": "70",
267
- "Data 2": "90",
268
- "Data 3": "110",
269
- "Data 4": "130",
270
- "Monthly-Goal": "120"
271
- },
272
- {
273
- "Date": "6/15/2016",
274
- "Data 1": "100",
275
- "Data 2": "120",
276
- "Data 3": "120",
277
- "Data 4": "130",
278
- "Monthly-Goal": "120"
279
- },
280
- {
281
- "Date": "7/15/2016",
282
- "Data 1": "110",
283
- "Data 2": "140",
284
- "Data 3": "120",
285
- "Data 4": "130",
286
- "Monthly-Goal": "130"
287
- },
288
- {
289
- "Date": "8/15/2016",
290
- "Data 1": "110",
291
- "Data 2": "130",
292
- "Data 3": "120",
293
- "Data 4": "140",
294
- "Monthly-Goal": "130"
295
- },
296
- {
297
- "Date": "9/15/2016",
298
- "Data 1": "120",
299
- "Data 2": "130",
300
- "Data 3": "120",
301
- "Data 4": "150",
302
- "Monthly-Goal": "140"
303
- }
304
- ],
305
- "active": false
306
- },
307
- "exclusions": {
308
- "active": false,
309
- "keys": []
310
- },
311
- "palette": "qualitative-soft",
312
- "isPaletteReversed": false,
313
- "twoColor": {
314
- "palette": "monochrome-1",
315
- "isPaletteReversed": false
316
- },
317
- "labels": false,
318
- "dataFormat": {
319
- "commas": false,
320
- "prefix": "",
321
- "suffix": "",
322
- "abbreviated": false,
323
- "bottomSuffix": "",
324
- "bottomPrefix": "",
325
- "bottomAbbreviated": false
326
- },
327
- "confidenceKeys": {},
328
- "visual": {
329
- "border": true,
330
- "accent": true,
331
- "background": true,
332
- "verticalHoverLine": false,
333
- "horizontalHoverLine": false
334
- },
335
- "useLogScale": false,
336
- "filterBehavior": "Filter Change",
337
- "highlightedBarValues": [],
338
- "series": [
339
- {
340
- "dataKey": "Data 3",
341
- "type": "Bar",
342
- "tooltip": true,
343
- "axis": "Left"
344
- },
345
- {
346
- "dataKey": "Data 4",
347
- "type": "Bar",
348
- "tooltip": true,
349
- "axis": "Left"
350
- }
351
- ],
352
- "tooltips": {
353
- "opacity": 90
354
- },
355
- "forestPlot": {
356
- "startAt": 0,
357
- "width": "auto",
358
- "colors": {
359
- "line": "",
360
- "shape": ""
361
- },
362
- "estimateField": "",
363
- "estimateRadius": "",
364
- "lowerCiField": "",
365
- "upperCiField": "",
366
- "shape": "",
367
- "rowHeight": 20,
368
- "showZeroLine": false,
369
- "description": {
370
- "show": true,
371
- "text": "description",
372
- "location": 0
373
- },
374
- "result": {
375
- "show": true,
376
- "text": "result",
377
- "location": 100
378
- },
379
- "radius": {
380
- "min": 1,
381
- "max": 8,
382
- "scalingColumn": ""
383
- },
384
- "regression": {
385
- "lower": 0,
386
- "upper": 0,
387
- "estimateField": 0
388
- },
389
- "leftWidthOffset": 0,
390
- "rightWidthOffset": 0
391
- },
392
- "area": {
393
- "isStacked": false
394
- },
395
- "height": "332",
396
- "data": [
397
- {
398
- "Date": "1/15/2016",
399
- "Data 1": "$1,000",
400
- "Data 2": "110",
401
- "Data 3": "100",
402
- "Data 4": "90",
403
- "Monthly-Goal": "100"
404
- },
405
- {
406
- "Date": "2/15/2016",
407
- "Data 1": "100",
408
- "Data 2": "110",
409
- "Data 3": "100",
410
- "Data 4": "100",
411
- "Monthly-Goal": "100"
412
- },
413
- {
414
- "Date": "3/15/2016",
415
- "Data 1": "80",
416
- "Data 2": "90",
417
- "Data 3": "100",
418
- "Data 4": "120",
419
- "Monthly-Goal": "110"
420
- },
421
- {
422
- "Date": "4/15/2016",
423
- "Data 1": "80",
424
- "Data 2": "90",
425
- "Data 3": "110",
426
- "Data 4": "120",
427
- "Monthly-Goal": "110"
428
- },
429
- {
430
- "Date": "5/15/2016",
431
- "Data 1": "70",
432
- "Data 2": "90",
433
- "Data 3": "110",
434
- "Data 4": "130",
435
- "Monthly-Goal": "120"
436
- },
437
- {
438
- "Date": "6/15/2016",
439
- "Data 1": "100",
440
- "Data 2": "120",
441
- "Data 3": "120",
442
- "Data 4": "130",
443
- "Monthly-Goal": "120"
444
- },
445
- {
446
- "Date": "7/15/2016",
447
- "Data 1": "110",
448
- "Data 2": "140",
449
- "Data 3": "120",
450
- "Data 4": "130",
451
- "Monthly-Goal": "130"
452
- },
453
- {
454
- "Date": "8/15/2016",
455
- "Data 1": "110",
456
- "Data 2": "130",
457
- "Data 3": "120",
458
- "Data 4": "140",
459
- "Monthly-Goal": "130"
460
- },
461
- {
462
- "Date": "9/15/2016",
463
- "Data 1": "120",
464
- "Data 2": "130",
465
- "Data 3": "120",
466
- "Data 4": "150",
467
- "Monthly-Goal": "140"
468
- }
469
- ],
470
- "visualizationType": "Bar",
471
- "filters": [],
472
- "validated": 4.23,
473
- "dynamicMarginTop": 0,
474
- "runtime": {
475
- "seriesLabels": {
476
- "Data 3": "Data 3",
477
- "Data 4": "Data 4"
478
- },
479
- "seriesLabelsAll": ["Data 3", "Data 4"],
480
- "originalXAxis": {
481
- "sortDates": false,
482
- "anchors": [],
483
- "type": "date",
484
- "showTargetLabel": true,
485
- "targetLabel": "Target",
486
- "hideAxis": false,
487
- "hideLabel": false,
488
- "hideTicks": false,
489
- "size": "78",
490
- "tickRotation": "25",
491
- "min": "",
492
- "max": "",
493
- "labelColor": "#333",
494
- "tickLabelColor": "#333",
495
- "tickColor": "#333",
496
- "numTicks": "",
497
- "labelOffset": 65,
498
- "axisPadding": 0,
499
- "target": 0,
500
- "maxTickRotation": 0,
501
- "dataKey": "Date",
502
- "label": "X-Axis Example Label",
503
- "dateParseFormat": "%d/%m/%Y",
504
- "dateDisplayFormat": "%d/%m/%Y",
505
- "tickWidthMax": 31
506
- },
507
- "seriesKeys": ["Data 3", "Data 4"],
508
- "xAxis": {
509
- "hideAxis": false,
510
- "displayNumbersOnBar": false,
511
- "hideLabel": false,
512
- "hideTicks": false,
513
- "size": "68",
514
- "gridLines": true,
515
- "enablePadding": false,
516
- "min": "",
517
- "max": "",
518
- "labelColor": "#333",
519
- "tickLabelColor": "#333",
520
- "tickColor": "#333",
521
- "rightHideAxis": true,
522
- "rightAxisSize": 50,
523
- "rightLabel": "",
524
- "rightLabelOffsetSize": 0,
525
- "rightAxisLabelColor": "#333",
526
- "rightAxisTickLabelColor": "#333",
527
- "rightAxisTickColor": "#333",
528
- "numTicks": "",
529
- "axisPadding": 0,
530
- "tickRotation": 0,
531
- "anchors": [],
532
- "label": "Y-Axis Label Example"
533
- },
534
- "yAxis": {
535
- "sortDates": false,
536
- "anchors": [],
537
- "type": "date",
538
- "showTargetLabel": true,
539
- "targetLabel": "Target",
540
- "hideAxis": false,
541
- "hideLabel": false,
542
- "hideTicks": false,
543
- "size": "78",
544
- "tickRotation": "25",
545
- "min": "",
546
- "max": "",
547
- "labelColor": "#333",
548
- "tickLabelColor": "#333",
549
- "tickColor": "#333",
550
- "numTicks": "",
551
- "labelOffset": 65,
552
- "axisPadding": 0,
553
- "target": 0,
554
- "maxTickRotation": 0,
555
- "dataKey": "Date",
556
- "label": "X-Axis Example Label",
557
- "dateParseFormat": "%d/%m/%Y",
558
- "dateDisplayFormat": "%d/%m/%Y",
559
- "tickWidthMax": 31
560
- },
561
- "horizontal": true,
562
- "uniqueId": 1700137919869,
563
- "editorErrorMessage": ""
564
- },
565
- "labelPlacement": "On Date/Category Axis"
566
- },
567
- "boxplot": {
568
- "plots": [],
569
- "borders": "true",
570
- "firstQuartilePercentage": 25,
571
- "thirdQuartilePercentage": 75,
572
- "boxWidthPercentage": 40,
573
- "plotOutlierValues": false,
574
- "plotNonOutlierValues": true,
575
- "legend": {
576
- "showHowToReadText": false,
577
- "howToReadText": ""
578
- },
579
- "labels": {
580
- "q1": "Lower Quartile",
581
- "q2": "q2",
582
- "q3": "Upper Quartile",
583
- "q4": "q4",
584
- "minimum": "Minimum",
585
- "maximum": "Maximum",
586
- "mean": "Mean",
587
- "median": "Median",
588
- "sd": "Standard Deviation",
589
- "iqr": "Interquartile Range",
590
- "total": "Total",
591
- "outliers": "Outliers",
592
- "values": "Values"
593
- }
594
- },
595
- "topAxis": {
596
- "hasLine": false
597
- },
598
- "isLegendValue": false,
599
- "barThickness": 0.35,
600
- "barHeight": "22",
601
- "barSpace": "27",
602
- "heights": {
603
- "vertical": 300,
604
- "horizontal": 639
605
- },
606
- "xAxis": {
607
- "sortDates": false,
608
- "anchors": [],
609
- "type": "date",
610
- "showTargetLabel": true,
611
- "targetLabel": "Target",
612
- "hideAxis": false,
613
- "hideLabel": false,
614
- "hideTicks": false,
615
- "size": "122",
616
- "tickRotation": "0",
617
- "min": "",
618
- "max": "",
619
- "labelColor": "#333",
620
- "tickLabelColor": "#333",
621
- "tickColor": "#333",
622
- "numTicks": "",
623
- "labelOffset": 65,
624
- "axisPadding": 0,
625
- "target": 0,
626
- "maxTickRotation": 0,
627
- "dataKey": "Date",
628
- "label": "X-Axis Example Label",
629
- "dateParseFormat": "%d/%m/%Y",
630
- "dateDisplayFormat": "%d/%m/%Y",
631
- "tickWidthMax": 41
632
- },
633
- "table": {
634
- "label": "Data Table",
635
- "expanded": true,
636
- "limitHeight": false,
637
- "height": "",
638
- "caption": "",
639
- "showDownloadUrl": false,
640
- "showDataTableLink": true,
641
- "indexLabel": "",
642
- "download": true,
643
- "showVertical": true,
644
- "show": true
645
- },
646
- "orientation": "horizontal",
647
- "color": "pinkpurple",
648
- "columns": {},
649
- "legend": {
650
- "hide": false,
651
- "behavior": "highlight",
652
- "singleRow": false,
653
- "colorCode": "",
654
- "reverseLabelOrder": false,
655
- "description": "",
656
- "dynamicLegend": false,
657
- "dynamicLegendDefaultText": "Show All",
658
- "dynamicLegendItemLimit": 5,
659
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
660
- "dynamicLegendChartMessage": "Select Options from the Legend",
661
- "lineMode": false,
662
- "verticalSorted": false,
663
- "position": "right",
664
- "label": "Data Type"
665
- },
666
- "brush": {
667
- "height": 25,
668
- "data": [
669
- {
670
- "Date": "1/15/2016",
671
- "Data 1": "1000",
672
- "Data 2": "110",
673
- "Data 3": "100",
674
- "Data 4": "90",
675
- "Monthly-Goal": "100"
676
- },
677
- {
678
- "Date": "2/15/2016",
679
- "Data 1": "100",
680
- "Data 2": "110",
681
- "Data 3": "100",
682
- "Data 4": "100",
683
- "Monthly-Goal": "100"
684
- },
685
- {
686
- "Date": "3/15/2016",
687
- "Data 1": "80",
688
- "Data 2": "90",
689
- "Data 3": "100",
690
- "Data 4": "120",
691
- "Monthly-Goal": "110"
692
- },
693
- {
694
- "Date": "4/15/2016",
695
- "Data 1": "80",
696
- "Data 2": "90",
697
- "Data 3": "110",
698
- "Data 4": "120",
699
- "Monthly-Goal": "110"
700
- },
701
- {
702
- "Date": "5/15/2016",
703
- "Data 1": "70",
704
- "Data 2": "90",
705
- "Data 3": "110",
706
- "Data 4": "130",
707
- "Monthly-Goal": "120"
708
- },
709
- {
710
- "Date": "6/15/2016",
711
- "Data 1": "100",
712
- "Data 2": "120",
713
- "Data 3": "120",
714
- "Data 4": "130",
715
- "Monthly-Goal": "120"
716
- },
717
- {
718
- "Date": "7/15/2016",
719
- "Data 1": "110",
720
- "Data 2": "140",
721
- "Data 3": "120",
722
- "Data 4": "130",
723
- "Monthly-Goal": "130"
724
- },
725
- {
726
- "Date": "8/15/2016",
727
- "Data 1": "110",
728
- "Data 2": "130",
729
- "Data 3": "120",
730
- "Data 4": "140",
731
- "Monthly-Goal": "130"
732
- },
733
- {
734
- "Date": "9/15/2016",
735
- "Data 1": "120",
736
- "Data 2": "130",
737
- "Data 3": "-120",
738
- "Data 4": "150",
739
- "Monthly-Goal": "140"
740
- }
741
- ],
742
- "active": false
743
- },
744
- "exclusions": {
745
- "active": false,
746
- "keys": []
747
- },
748
- "palette": "qualitative-softreverse",
749
- "isPaletteReversed": true,
750
- "twoColor": {
751
- "palette": "monochrome-1",
752
- "isPaletteReversed": false
753
- },
754
- "labels": false,
755
- "dataFormat": {
756
- "commas": false,
757
- "prefix": "",
758
- "suffix": "",
759
- "abbreviated": false,
760
- "bottomSuffix": "",
761
- "bottomPrefix": "",
762
- "bottomAbbreviated": false
763
- },
764
- "confidenceKeys": {},
765
- "visual": {
766
- "border": true,
767
- "accent": true,
768
- "background": true,
769
- "verticalHoverLine": false,
770
- "horizontalHoverLine": false
771
- },
772
- "useLogScale": false,
773
- "filterBehavior": "Filter Change",
774
- "highlightedBarValues": [],
775
- "series": [
776
- {
777
- "dataKey": "Data 3",
778
- "type": "Bar",
779
- "tooltip": true,
780
- "axis": "Left"
781
- },
782
- {
783
- "dataKey": "Data 1",
784
- "type": "Bar",
785
- "axis": "Left",
786
- "tooltip": true
787
- }
788
- ],
789
- "tooltips": {
790
- "opacity": 90
791
- },
792
- "forestPlot": {
793
- "startAt": 0,
794
- "width": "auto",
795
- "colors": {
796
- "line": "",
797
- "shape": ""
798
- },
799
- "estimateField": "",
800
- "estimateRadius": "",
801
- "lowerCiField": "",
802
- "upperCiField": "",
803
- "shape": "",
804
- "rowHeight": 20,
805
- "showZeroLine": false,
806
- "description": {
807
- "show": true,
808
- "text": "description",
809
- "location": 0
810
- },
811
- "result": {
812
- "show": true,
813
- "text": "result",
814
- "location": 100
815
- },
816
- "radius": {
817
- "min": 1,
818
- "max": 8,
819
- "scalingColumn": ""
820
- },
821
- "regression": {
822
- "lower": 0,
823
- "upper": 0,
824
- "estimateField": 0
825
- },
826
- "leftWidthOffset": 0,
827
- "rightWidthOffset": 0
828
- },
829
- "area": {
830
- "isStacked": false
831
- },
832
- "height": "332",
833
- "data": [
834
- {
835
- "Date": "1/15/2016",
836
- "Data 1": "$1,000",
837
- "Data 2": "110",
838
- "Data 3": "100",
839
- "Data 4": "90",
840
- "Monthly-Goal": "100"
841
- },
842
- {
843
- "Date": "2/15/2016",
844
- "Data 1": "100",
845
- "Data 2": "110",
846
- "Data 3": "100",
847
- "Data 4": "100",
848
- "Monthly-Goal": "100"
849
- },
850
- {
851
- "Date": "3/15/2016",
852
- "Data 1": "80",
853
- "Data 2": "90",
854
- "Data 3": "100",
855
- "Data 4": "120",
856
- "Monthly-Goal": "110"
857
- },
858
- {
859
- "Date": "4/15/2016",
860
- "Data 1": "80",
861
- "Data 2": "90",
862
- "Data 3": "110",
863
- "Data 4": "120",
864
- "Monthly-Goal": "110"
865
- },
866
- {
867
- "Date": "5/15/2016",
868
- "Data 1": "70",
869
- "Data 2": "90",
870
- "Data 3": "110",
871
- "Data 4": "130",
872
- "Monthly-Goal": "120"
873
- },
874
- {
875
- "Date": "6/15/2016",
876
- "Data 1": "100",
877
- "Data 2": "120",
878
- "Data 3": "120",
879
- "Data 4": "130",
880
- "Monthly-Goal": "120"
881
- },
882
- {
883
- "Date": "7/15/2016",
884
- "Data 1": "110",
885
- "Data 2": "140",
886
- "Data 3": "120",
887
- "Data 4": "130",
888
- "Monthly-Goal": "130"
889
- },
890
- {
891
- "Date": "8/15/2016",
892
- "Data 1": "110",
893
- "Data 2": "130",
894
- "Data 3": "120",
895
- "Data 4": "140",
896
- "Monthly-Goal": "130"
897
- },
898
- {
899
- "Date": "9/15/2016",
900
- "Data 1": "120",
901
- "Data 2": "130",
902
- "Data 3": "-120",
903
- "Data 4": "150",
904
- "Monthly-Goal": "140"
905
- }
906
- ],
907
- "visualizationType": "Bar",
908
- "filters": [],
909
- "validated": 4.23,
910
- "dynamicMarginTop": 0
911
- }