@cdc/chart 4.23.3 → 4.23.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 (98) hide show
  1. package/dist/cdcchart.js +52543 -50830
  2. package/examples/feature/__data__/area-chart.json +56 -0
  3. package/examples/{planet-example-data.json → feature/__data__/planet-example-data.json} +3 -8
  4. package/examples/feature/__data__/planet-logaritmic-data.json +56 -0
  5. package/examples/feature/area/area-chart-category.json +240 -0
  6. package/examples/{area-chart.json → feature/area/area-chart-date.json} +70 -13
  7. package/examples/feature/bar/example-bar-chart.json +558 -0
  8. package/examples/{horizontal-chart-max-increase.json → feature/bar/horizontal-chart-max-increase.json} +10 -4
  9. package/examples/{horizontal-chart.json → feature/bar/horizontal-chart.json} +10 -4
  10. package/examples/{horizontal-stacked-bar-chart.json → feature/bar/horizontal-stacked-bar-chart.json} +7 -3
  11. package/examples/{planet-chart-horizontal-example-config.json → feature/bar/planet-chart-horizontal-example-config.json} +8 -3
  12. package/examples/feature/bar/planet-chart-logaritmic-config.json +170 -0
  13. package/examples/{planet-example-config.json → feature/bar/planet-example-config.json} +2 -2
  14. package/examples/{box-plot.json → feature/boxplot/boxplot.json} +7 -7
  15. package/examples/feature/boxplot/testing.csv +38 -0
  16. package/examples/feature/boxplot/valid-boxplot.csv +17 -0
  17. package/examples/feature/combo/combochart-categories_are_numbers .json +18 -0
  18. package/examples/{planet-combo-example-config.json → feature/combo/planet-combo-example-config.json} +1 -1
  19. package/examples/{planet-deviation-config.json → feature/deviation/planet-deviation-config.json} +2 -2
  20. package/examples/{planet-deviation-data.json → feature/deviation/planet-deviation-data.json} +9 -9
  21. package/examples/feature/filters/filter-testing.json +212 -0
  22. package/examples/feature/forecasting/case_date_example.csv +130 -0
  23. package/examples/feature/forecasting/effective_reproduction.json +202 -0
  24. package/examples/feature/forecasting/r_data.csv +130 -0
  25. package/examples/feature/forecasting/random_data.csv +366 -0
  26. package/examples/feature/line/line-chart.json +124 -0
  27. package/examples/{paired-bar-example.json → feature/paired-bar/paired-bar-example.json} +10 -4
  28. package/examples/{planet-pie-example-config.json → feature/pie/planet-pie-example-config.json} +2 -2
  29. package/examples/{scatterplot.json → feature/scatterplot/scatterplot.json} +1 -1
  30. package/examples/feature/test-highlight/test-highlight-2.json +789 -0
  31. package/examples/feature/test-highlight/test-highlight-vertical.json +561 -0
  32. package/examples/feature/test-highlight/test-highlight.json +100 -0
  33. package/examples/{case-rate-example-config.json → feature/tests-case-rate/case-rate-example-config.json} +2 -2
  34. package/examples/{covid-confidence-example-config.json → feature/tests-covid/covid-confidence-example-config.json} +8 -3
  35. package/examples/{covid-example-config.json → feature/tests-covid/covid-example-config.json} +7 -3
  36. package/examples/{cutoff-example-config.json → feature/tests-cutoff/cutoff-example-config.json} +7 -3
  37. package/examples/{date-exclusions-config.json → feature/tests-date-exclusions/date-exclusions-config.json} +2 -2
  38. package/examples/{example-bar-chart-nonnumeric.json → feature/tests-non-numerics/example-bar-chart-nonnumeric.json} +1 -1
  39. package/examples/{planet-pie-example-config-nonnumeric.json → feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json} +2 -2
  40. package/examples/{sparkline-chart-nonnumeric.json → feature/tests-non-numerics/sparkline-chart-nonnumeric.json} +1 -1
  41. package/examples/{stacked-vertical-bar-example-nonnumerics.json → feature/tests-non-numerics/stacked-vertical-bar-example-nonnumerics.json} +1 -2
  42. package/examples/gallery/bar-chart-horizontal/horizontal-highlight.json +345 -0
  43. package/examples/gallery/bar-chart-vertical/combo-line-chart.json +145 -7
  44. package/examples/gallery/paired-bar/paired-bar-chart.json +1 -0
  45. package/index.html +73 -49
  46. package/package.json +2 -2
  47. package/src/CdcChart.jsx +405 -40
  48. package/src/components/AreaChart.jsx +122 -80
  49. package/src/components/BarChart.jsx +126 -49
  50. package/src/components/BoxPlot.jsx +28 -20
  51. package/src/components/DataTable.jsx +7 -6
  52. package/src/components/DeviationBar.jsx +34 -34
  53. package/src/components/EditorPanel.jsx +1332 -352
  54. package/src/components/Legend.jsx +40 -4
  55. package/src/components/LineChart.jsx +10 -23
  56. package/src/components/LinearChart.jsx +133 -286
  57. package/src/components/PairedBarChart.jsx +6 -6
  58. package/src/components/PieChart.jsx +2 -4
  59. package/src/components/SparkLine.jsx +6 -42
  60. package/src/data/initial-state.js +23 -4
  61. package/src/hooks/useHighlightedBars.js +154 -0
  62. package/src/hooks/useMinMax.js +92 -0
  63. package/src/hooks/useReduceData.js +31 -57
  64. package/src/hooks/useScales.js +202 -0
  65. package/src/index.jsx +2 -1
  66. package/src/scss/editor-panel.scss +15 -0
  67. package/src/scss/main.scss +8 -6
  68. package/examples/box-plot.csv +0 -5
  69. package/examples/dynamic-legends.json +0 -125
  70. package/examples/example-bar-chart.json +0 -36
  71. package/examples/line-chart.json +0 -34
  72. package/examples/temp-example-config.json +0 -64
  73. package/examples/temp-example-data.json +0 -130
  74. package/src/components/Filters.jsx +0 -126
  75. /package/examples/{age-adjusted-rates.json → feature/__data__/age-adjusted-rates.json} +0 -0
  76. /package/examples/{new-data.csv → feature/__data__/new-data.csv} +0 -0
  77. /package/examples/{planet-example-data-max-increase.json → feature/__data__/planet-example-data-max-increase.json} +0 -0
  78. /package/examples/{Barchart_with_negative.json → feature/bar/Barchart_with_negative.json} +0 -0
  79. /package/examples/{stacked-vertical-bar-example-negative.json → feature/bar/stacked-vertical-bar-example-negative.json} +0 -0
  80. /package/examples/{stacked-vertical-bar-example.json → feature/bar/stacked-vertical-bar-example.json} +0 -0
  81. /package/examples/{box-plot-data.json → feature/boxplot/box-plot-data.json} +0 -0
  82. /package/examples/{newdata.json → feature/boxplot/boxplot-data.json} +0 -0
  83. /package/examples/{line-chart-max-increase.json → feature/line/line-chart-max-increase.json} +0 -0
  84. /package/examples/{paired-bar-data.json → feature/paired-bar/paired-bar-data.json} +0 -0
  85. /package/examples/{paired-bar-formatted.json → feature/paired-bar/paired-bar-formatted.json} +0 -0
  86. /package/examples/{scatterplot-continuous.csv → feature/scatterplot/scatterplot-continuous.csv} +0 -0
  87. /package/examples/{example-sparkline.json → feature/sparkline/example-sparkline.json} +0 -0
  88. /package/examples/{big-small-test-bar.json → feature/tests-big-small/big-small-test-bar.json} +0 -0
  89. /package/examples/{big-small-test-line.json → feature/tests-big-small/big-small-test-line.json} +0 -0
  90. /package/examples/{big-small-test-negative.json → feature/tests-big-small/big-small-test-negative.json} +0 -0
  91. /package/examples/{case-rate-example-data.json → feature/tests-case-rate/case-rate-example-data.json} +0 -0
  92. /package/examples/{covid-example-data-confidence.json → feature/tests-covid/covid-example-data-confidence.json} +0 -0
  93. /package/examples/{covid-example-data.json → feature/tests-covid/covid-example-data.json} +0 -0
  94. /package/examples/{cutoff-example-data.json → feature/tests-cutoff/cutoff-example-data.json} +0 -0
  95. /package/examples/{date-exclusions-data.json → feature/tests-date-exclusions/date-exclusions-data.json} +0 -0
  96. /package/examples/{example-combo-bar-nonnumeric.json → feature/tests-non-numerics/example-combo-bar-nonnumeric.json} +0 -0
  97. /package/examples/{line-chart-nonnumeric.json → feature/tests-non-numerics/line-chart-nonnumeric.json} +0 -0
  98. /package/examples/{planet-example-data-nonnumeric.json → feature/tests-non-numerics/planet-example-data-nonnumeric.json} +0 -0
@@ -0,0 +1,366 @@
1
+ date,quarter,upper_90,lower_90,random_col
2
+ 1/1/2023,quarter one,90,10,67
3
+ 1/2/2023,quarter one,90,10,11
4
+ 1/3/2023,quarter one,90,10,94
5
+ 1/4/2023,quarter one,90,10,95
6
+ 1/5/2023,quarter one,90,10,79
7
+ 1/6/2023,quarter one,90,10,2
8
+ 1/7/2023,quarter one,90,10,36
9
+ 1/8/2023,quarter one,90,10,9
10
+ 1/9/2023,quarter one,90,10,3
11
+ 1/10/2023,quarter one,90,10,64
12
+ 1/11/2023,quarter one,90,10,48
13
+ 1/12/2023,quarter one,90,10,94
14
+ 1/13/2023,quarter one,90,10,38
15
+ 1/14/2023,quarter one,90,10,33
16
+ 1/15/2023,quarter one,90,10,23
17
+ 1/16/2023,quarter one,90,10,13
18
+ 1/17/2023,quarter one,90,10,89
19
+ 1/18/2023,quarter one,90,10,12
20
+ 1/19/2023,quarter one,90,10,24
21
+ 1/20/2023,quarter one,90,10,86
22
+ 1/21/2023,quarter one,90,10,17
23
+ 1/22/2023,quarter one,90,10,37
24
+ 1/23/2023,quarter one,90,10,9
25
+ 1/24/2023,quarter one,90,10,15
26
+ 1/25/2023,quarter one,90,10,7
27
+ 1/26/2023,quarter one,90,10,40
28
+ 1/27/2023,quarter one,90,10,18
29
+ 1/28/2023,quarter one,90,10,67
30
+ 1/29/2023,quarter one,90,10,40
31
+ 1/30/2023,quarter one,90,10,84
32
+ 1/31/2023,quarter one,90,10,81
33
+ 2/1/2023,quarter one,90,10,16
34
+ 2/2/2023,quarter one,90,10,85
35
+ 2/3/2023,quarter one,90,10,48
36
+ 2/4/2023,quarter one,90,10,45
37
+ 2/5/2023,quarter one,90,10,93
38
+ 2/6/2023,quarter one,90,10,77
39
+ 2/7/2023,quarter one,90,10,35
40
+ 2/8/2023,quarter one,90,10,44
41
+ 2/9/2023,quarter one,90,10,57
42
+ 2/10/2023,quarter one,90,10,92
43
+ 2/11/2023,quarter one,90,10,50
44
+ 2/12/2023,quarter one,90,10,81
45
+ 2/13/2023,quarter one,90,10,13
46
+ 2/14/2023,quarter one,90,10,31
47
+ 2/15/2023,quarter one,90,10,52
48
+ 2/16/2023,quarter one,90,10,91
49
+ 2/17/2023,quarter one,90,10,57
50
+ 2/18/2023,quarter one,90,10,79
51
+ 2/19/2023,quarter one,90,10,75
52
+ 2/20/2023,quarter one,90,10,8
53
+ 2/21/2023,quarter one,90,10,11
54
+ 2/22/2023,quarter one,90,10,41
55
+ 2/23/2023,quarter one,90,10,20
56
+ 2/24/2023,quarter one,90,10,80
57
+ 2/25/2023,quarter one,90,10,65
58
+ 2/26/2023,quarter one,90,10,76
59
+ 2/27/2023,quarter one,90,10,11
60
+ 2/28/2023,quarter one,90,10,88
61
+ 3/1/2023,quarter one,90,10,92
62
+ 3/2/2023,quarter one,90,10,53
63
+ 3/3/2023,quarter one,90,10,89
64
+ 3/4/2023,quarter one,90,10,40
65
+ 3/5/2023,quarter one,90,10,26
66
+ 3/6/2023,quarter one,90,10,67
67
+ 3/7/2023,quarter one,90,10,79
68
+ 3/8/2023,quarter one,90,10,13
69
+ 3/9/2023,quarter one,90,10,71
70
+ 3/10/2023,quarter one,90,10,52
71
+ 3/11/2023,quarter one,90,10,69
72
+ 3/12/2023,quarter one,90,10,89
73
+ 3/13/2023,quarter one,90,10,55
74
+ 3/14/2023,quarter one,90,10,77
75
+ 3/15/2023,quarter one,90,10,19
76
+ 3/16/2023,quarter one,90,10,16
77
+ 3/17/2023,quarter one,90,10,33
78
+ 3/18/2023,quarter one,90,10,54
79
+ 3/19/2023,quarter one,90,10,49
80
+ 3/20/2023,quarter one,90,10,29
81
+ 3/21/2023,quarter one,90,10,85
82
+ 3/22/2023,quarter one,90,10,53
83
+ 3/23/2023,quarter one,90,10,25
84
+ 3/24/2023,quarter one,90,10,36
85
+ 3/25/2023,quarter one,90,10,79
86
+ 3/26/2023,quarter one,90,10,100
87
+ 3/27/2023,quarter one,90,10,12
88
+ 3/28/2023,quarter one,90,10,71
89
+ 3/29/2023,quarter one,90,10,46
90
+ 3/30/2023,quarter one,90,10,32
91
+ 3/31/2023,quarter one,90,10,81
92
+ 4/1/2023,quarter two,80,20,70
93
+ 4/2/2023,quarter two,80,20,84
94
+ 4/3/2023,quarter two,80,20,97
95
+ 4/4/2023,quarter two,80,20,69
96
+ 4/5/2023,quarter two,80,20,76
97
+ 4/6/2023,quarter two,80,20,69
98
+ 4/7/2023,quarter two,80,20,9
99
+ 4/8/2023,quarter two,80,20,53
100
+ 4/9/2023,quarter two,80,20,63
101
+ 4/10/2023,quarter two,80,20,26
102
+ 4/11/2023,quarter two,80,20,9
103
+ 4/12/2023,quarter two,80,20,48
104
+ 4/13/2023,quarter two,80,20,36
105
+ 4/14/2023,quarter two,80,20,29
106
+ 4/15/2023,quarter two,80,20,66
107
+ 4/16/2023,quarter two,80,20,53
108
+ 4/17/2023,quarter two,80,20,10
109
+ 4/18/2023,quarter two,80,20,62
110
+ 4/19/2023,quarter two,80,20,84
111
+ 4/20/2023,quarter two,80,20,88
112
+ 4/21/2023,quarter two,80,20,27
113
+ 4/22/2023,quarter two,80,20,81
114
+ 4/23/2023,quarter two,80,20,16
115
+ 4/24/2023,quarter two,80,20,95
116
+ 4/25/2023,quarter two,80,20,80
117
+ 4/26/2023,quarter two,80,20,53
118
+ 4/27/2023,quarter two,80,20,65
119
+ 4/28/2023,quarter two,80,20,39
120
+ 4/29/2023,quarter two,80,20,1
121
+ 4/30/2023,quarter two,80,20,37
122
+ 5/1/2023,quarter two,80,20,70
123
+ 5/2/2023,quarter two,80,20,88
124
+ 5/3/2023,quarter two,80,20,75
125
+ 5/4/2023,quarter two,80,20,80
126
+ 5/5/2023,quarter two,80,20,45
127
+ 5/6/2023,quarter two,80,20,70
128
+ 5/7/2023,quarter two,80,20,8
129
+ 5/8/2023,quarter two,80,20,2
130
+ 5/9/2023,quarter two,80,20,41
131
+ 5/10/2023,quarter two,80,20,42
132
+ 5/11/2023,quarter two,80,20,88
133
+ 5/12/2023,quarter two,80,20,94
134
+ 5/13/2023,quarter two,80,20,31
135
+ 5/14/2023,quarter two,80,20,19
136
+ 5/15/2023,quarter two,80,20,62
137
+ 5/16/2023,quarter two,80,20,62
138
+ 5/17/2023,quarter two,80,20,33
139
+ 5/18/2023,quarter two,80,20,86
140
+ 5/19/2023,quarter two,80,20,36
141
+ 5/20/2023,quarter two,80,20,82
142
+ 5/21/2023,quarter two,80,20,52
143
+ 5/22/2023,quarter two,80,20,64
144
+ 5/23/2023,quarter two,80,20,82
145
+ 5/24/2023,quarter two,80,20,85
146
+ 5/25/2023,quarter two,80,20,87
147
+ 5/26/2023,quarter two,80,20,23
148
+ 5/27/2023,quarter two,80,20,61
149
+ 5/28/2023,quarter two,80,20,64
150
+ 5/29/2023,quarter two,80,20,14
151
+ 5/30/2023,quarter two,80,20,73
152
+ 5/31/2023,quarter two,80,20,92
153
+ 6/1/2023,quarter two,80,20,85
154
+ 6/2/2023,quarter two,80,20,75
155
+ 6/3/2023,quarter two,80,20,67
156
+ 6/4/2023,quarter two,80,20,39
157
+ 6/5/2023,quarter two,80,20,39
158
+ 6/6/2023,quarter two,80,20,92
159
+ 6/7/2023,quarter two,80,20,70
160
+ 6/8/2023,quarter two,80,20,48
161
+ 6/9/2023,quarter two,80,20,69
162
+ 6/10/2023,quarter two,80,20,74
163
+ 6/11/2023,quarter two,80,20,40
164
+ 6/12/2023,quarter two,80,20,34
165
+ 6/13/2023,quarter two,80,20,38
166
+ 6/14/2023,quarter two,80,20,14
167
+ 6/15/2023,quarter two,80,20,42
168
+ 6/16/2023,quarter two,80,20,16
169
+ 6/17/2023,quarter two,80,20,47
170
+ 6/18/2023,quarter two,80,20,43
171
+ 6/19/2023,quarter two,80,20,28
172
+ 6/20/2023,quarter two,80,20,88
173
+ 6/21/2023,quarter two,80,20,70
174
+ 6/22/2023,quarter two,80,20,63
175
+ 6/23/2023,quarter two,80,20,43
176
+ 6/24/2023,quarter two,80,20,47
177
+ 6/25/2023,quarter two,80,20,80
178
+ 6/26/2023,quarter two,80,20,6
179
+ 6/27/2023,quarter two,80,20,13
180
+ 6/28/2023,quarter two,80,20,39
181
+ 6/29/2023,quarter two,80,20,62
182
+ 6/30/2023,quarter two,80,20,26
183
+ 7/1/2023,quarter three,70,30,96
184
+ 7/2/2023,quarter three,70,30,0
185
+ 7/3/2023,quarter three,70,30,24
186
+ 7/4/2023,quarter three,70,30,4
187
+ 7/5/2023,quarter three,70,30,39
188
+ 7/6/2023,quarter three,70,30,1
189
+ 7/7/2023,quarter three,70,30,18
190
+ 7/8/2023,quarter three,70,30,38
191
+ 7/9/2023,quarter three,70,30,92
192
+ 7/10/2023,quarter three,70,30,11
193
+ 7/11/2023,quarter three,70,30,48
194
+ 7/12/2023,quarter three,70,30,62
195
+ 7/13/2023,quarter three,70,30,82
196
+ 7/14/2023,quarter three,70,30,55
197
+ 7/15/2023,quarter three,70,30,63
198
+ 7/16/2023,quarter three,70,30,26
199
+ 7/17/2023,quarter three,70,30,26
200
+ 7/18/2023,quarter three,70,30,22
201
+ 7/19/2023,quarter three,70,30,65
202
+ 7/20/2023,quarter three,70,30,1
203
+ 7/21/2023,quarter three,70,30,16
204
+ 7/22/2023,quarter three,70,30,20
205
+ 7/23/2023,quarter three,70,30,44
206
+ 7/24/2023,quarter three,70,30,38
207
+ 7/25/2023,quarter three,70,30,33
208
+ 7/26/2023,quarter three,70,30,9
209
+ 7/27/2023,quarter three,70,30,8
210
+ 7/28/2023,quarter three,70,30,70
211
+ 7/29/2023,quarter three,70,30,16
212
+ 7/30/2023,quarter three,70,30,26
213
+ 7/31/2023,quarter three,70,30,93
214
+ 8/1/2023,quarter three,70,30,5
215
+ 8/2/2023,quarter three,70,30,9
216
+ 8/3/2023,quarter three,70,30,66
217
+ 8/4/2023,quarter three,70,30,15
218
+ 8/5/2023,quarter three,70,30,3
219
+ 8/6/2023,quarter three,70,30,28
220
+ 8/7/2023,quarter three,70,30,93
221
+ 8/8/2023,quarter three,70,30,88
222
+ 8/9/2023,quarter three,70,30,87
223
+ 8/10/2023,quarter three,70,30,27
224
+ 8/11/2023,quarter three,70,30,51
225
+ 8/12/2023,quarter three,70,30,25
226
+ 8/13/2023,quarter three,70,30,6
227
+ 8/14/2023,quarter three,70,30,87
228
+ 8/15/2023,quarter three,70,30,83
229
+ 8/16/2023,quarter three,70,30,61
230
+ 8/17/2023,quarter three,70,30,93
231
+ 8/18/2023,quarter three,70,30,91
232
+ 8/19/2023,quarter three,70,30,87
233
+ 8/20/2023,quarter three,70,30,99
234
+ 8/21/2023,quarter three,70,30,27
235
+ 8/22/2023,quarter three,70,30,91
236
+ 8/23/2023,quarter three,70,30,100
237
+ 8/24/2023,quarter three,70,30,36
238
+ 8/25/2023,quarter three,70,30,73
239
+ 8/26/2023,quarter three,70,30,73
240
+ 8/27/2023,quarter three,70,30,80
241
+ 8/28/2023,quarter three,70,30,100
242
+ 8/29/2023,quarter three,70,30,84
243
+ 8/30/2023,quarter three,70,30,40
244
+ 8/31/2023,quarter three,70,30,30
245
+ 9/1/2023,quarter three,70,30,6
246
+ 9/2/2023,quarter three,70,30,26
247
+ 9/3/2023,quarter three,70,30,45
248
+ 9/4/2023,quarter three,70,30,1
249
+ 9/5/2023,quarter three,70,30,14
250
+ 9/6/2023,quarter three,70,30,44
251
+ 9/7/2023,quarter three,70,30,93
252
+ 9/8/2023,quarter three,70,30,63
253
+ 9/9/2023,quarter three,70,30,65
254
+ 9/10/2023,quarter three,70,30,79
255
+ 9/11/2023,quarter three,70,30,90
256
+ 9/12/2023,quarter three,70,30,23
257
+ 9/13/2023,quarter three,70,30,95
258
+ 9/14/2023,quarter three,70,30,64
259
+ 9/15/2023,quarter three,70,30,32
260
+ 9/16/2023,quarter three,70,30,39
261
+ 9/17/2023,quarter three,70,30,67
262
+ 9/18/2023,quarter three,70,30,9
263
+ 9/19/2023,quarter three,70,30,48
264
+ 9/20/2023,quarter three,70,30,49
265
+ 9/21/2023,quarter three,70,30,56
266
+ 9/22/2023,quarter three,70,30,59
267
+ 9/23/2023,quarter three,70,30,0
268
+ 9/24/2023,quarter three,70,30,94
269
+ 9/25/2023,quarter three,70,30,86
270
+ 9/26/2023,quarter three,70,30,37
271
+ 9/27/2023,quarter three,70,30,50
272
+ 9/28/2023,quarter three,70,30,31
273
+ 9/29/2023,quarter three,70,30,44
274
+ 9/30/2023,quarter three,70,30,48
275
+ 10/1/2023,quarter four,60,40,76
276
+ 10/2/2023,quarter four,60,40,14
277
+ 10/3/2023,quarter four,60,40,76
278
+ 10/4/2023,quarter four,60,40,12
279
+ 10/5/2023,quarter four,60,40,25
280
+ 10/6/2023,quarter four,60,40,86
281
+ 10/7/2023,quarter four,60,40,69
282
+ 10/8/2023,quarter four,60,40,86
283
+ 10/9/2023,quarter four,60,40,99
284
+ 10/10/2023,quarter four,60,40,24
285
+ 10/11/2023,quarter four,60,40,69
286
+ 10/12/2023,quarter four,60,40,42
287
+ 10/13/2023,quarter four,60,40,1
288
+ 10/14/2023,quarter four,60,40,72
289
+ 10/15/2023,quarter four,60,40,85
290
+ 10/16/2023,quarter four,60,40,2
291
+ 10/17/2023,quarter four,60,40,42
292
+ 10/18/2023,quarter four,60,40,55
293
+ 10/19/2023,quarter four,60,40,59
294
+ 10/20/2023,quarter four,60,40,71
295
+ 10/21/2023,quarter four,60,40,19
296
+ 10/22/2023,quarter four,60,40,43
297
+ 10/23/2023,quarter four,60,40,29
298
+ 10/24/2023,quarter four,60,40,78
299
+ 10/25/2023,quarter four,60,40,21
300
+ 10/26/2023,quarter four,60,40,76
301
+ 10/27/2023,quarter four,60,40,65
302
+ 10/28/2023,quarter four,60,40,88
303
+ 10/29/2023,quarter four,60,40,41
304
+ 10/30/2023,quarter four,60,40,31
305
+ 10/31/2023,quarter four,60,40,71
306
+ 11/1/2023,quarter four,60,40,59
307
+ 11/2/2023,quarter four,60,40,65
308
+ 11/3/2023,quarter four,60,40,91
309
+ 11/4/2023,quarter four,60,40,60
310
+ 11/5/2023,quarter four,60,40,22
311
+ 11/6/2023,quarter four,60,40,26
312
+ 11/7/2023,quarter four,60,40,10
313
+ 11/8/2023,quarter four,60,40,39
314
+ 11/9/2023,quarter four,60,40,67
315
+ 11/10/2023,quarter four,60,40,0
316
+ 11/11/2023,quarter four,60,40,19
317
+ 11/12/2023,quarter four,60,40,9
318
+ 11/13/2023,quarter four,60,40,70
319
+ 11/14/2023,quarter four,60,40,86
320
+ 11/15/2023,quarter four,60,40,40
321
+ 11/16/2023,quarter four,60,40,7
322
+ 11/17/2023,quarter four,60,40,57
323
+ 11/18/2023,quarter four,60,40,16
324
+ 11/19/2023,quarter four,60,40,24
325
+ 11/20/2023,quarter four,60,40,68
326
+ 11/21/2023,quarter four,60,40,36
327
+ 11/22/2023,quarter four,60,40,62
328
+ 11/23/2023,quarter four,60,40,96
329
+ 11/24/2023,quarter four,60,40,75
330
+ 11/25/2023,quarter four,60,40,55
331
+ 11/26/2023,quarter four,60,40,14
332
+ 11/27/2023,quarter four,60,40,60
333
+ 11/28/2023,quarter four,60,40,23
334
+ 11/29/2023,quarter four,60,40,8
335
+ 11/30/2023,quarter four,60,40,82
336
+ 12/1/2023,quarter four,60,40,27
337
+ 12/2/2023,quarter four,60,40,67
338
+ 12/3/2023,quarter four,60,40,47
339
+ 12/4/2023,quarter four,60,40,73
340
+ 12/5/2023,quarter four,60,40,33
341
+ 12/6/2023,quarter four,60,40,73
342
+ 12/7/2023,quarter four,60,40,85
343
+ 12/8/2023,quarter four,60,40,83
344
+ 12/9/2023,quarter four,60,40,14
345
+ 12/10/2023,quarter four,60,40,32
346
+ 12/11/2023,quarter four,60,40,13
347
+ 12/12/2023,quarter four,60,40,58
348
+ 12/13/2023,quarter four,60,40,21
349
+ 12/14/2023,quarter four,60,40,92
350
+ 12/15/2023,quarter four,60,40,28
351
+ 12/16/2023,quarter four,60,40,12
352
+ 12/17/2023,quarter four,60,40,3
353
+ 12/18/2023,quarter four,60,40,30
354
+ 12/19/2023,quarter four,60,40,39
355
+ 12/20/2023,quarter four,60,40,64
356
+ 12/21/2023,quarter four,60,40,84
357
+ 12/22/2023,quarter four,60,40,19
358
+ 12/23/2023,quarter four,60,40,11
359
+ 12/24/2023,quarter four,60,40,41
360
+ 12/25/2023,quarter four,60,40,39
361
+ 12/26/2023,quarter four,60,40,22
362
+ 12/27/2023,quarter four,60,40,32
363
+ 12/28/2023,quarter four,60,40,99
364
+ 12/29/2023,quarter four,60,40,56
365
+ 12/30/2023,quarter four,60,40,56
366
+ 12/31/2023,quarter four,60,40,76
@@ -0,0 +1,124 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "Example Line Chart",
4
+ "theme": "theme-green",
5
+ "fontSize": "medium",
6
+ "height": "375",
7
+ "padding": {
8
+ "left": 5,
9
+ "right": 5
10
+ },
11
+ "yAxis": {
12
+ "size": "75",
13
+ "gridLines": false,
14
+ "label": "Y-Axis Example Label",
15
+ "numTicks": "9"
16
+ },
17
+ "barThickness": 0.35,
18
+ "xAxis": {
19
+ "size": "77",
20
+ "tickRotation": "25",
21
+ "dataKey": "Date",
22
+ "label": "X-Axis Example Label",
23
+ "type": "date",
24
+ "dateParseFormat": "%m/%d/%Y",
25
+ "dateDisplayFormat": "%m/%d/%Y"
26
+ },
27
+ "table": {
28
+ "label": "Data Table",
29
+ "expanded": true,
30
+ "download": true
31
+ },
32
+ "legend": {
33
+ "behavior": "isolate",
34
+ "position": "right",
35
+ "label": "Type of Data"
36
+ },
37
+ "palette": "qualitative-bold",
38
+ "labels": false,
39
+ "dataFormat": {},
40
+ "confidenceKeys": {},
41
+ "data": [
42
+ {
43
+ "Date": "1/15/2016",
44
+ "Data 1": "foo",
45
+ "Data 2": "135",
46
+ "Data 3": "300",
47
+ "Data 4": "95",
48
+ "Data 5": "120",
49
+ "Data 6": "310"
50
+ },
51
+ {
52
+ "Date": "2/15/2016",
53
+ "Data 1": "40",
54
+ "Data 2": "90",
55
+ "Data 3": "240",
56
+ "Data 4": "60",
57
+ "Data 5": "160",
58
+ "Data 6": "200"
59
+ },
60
+ {
61
+ "Date": "3/15/2016",
62
+ "Data 1": "50",
63
+ "Data 2": "300",
64
+ "Data 3": "290",
65
+ "Data 4": "100",
66
+ "Data 5": "200",
67
+ "Data 6": "250"
68
+ },
69
+ {
70
+ "Date": "4/15/2016",
71
+ "Data 1": "120",
72
+ "Data 2": "160",
73
+ "Data 3": "230",
74
+ "Data 4": "180",
75
+ "Data 5": "160",
76
+ "Data 6": "220"
77
+ },
78
+ {
79
+ "Date": "5/15/2016",
80
+ "Data 1": "80",
81
+ "Data 2": "350",
82
+ "Data 3": "300",
83
+ "Data 4": "150",
84
+ "Data 5": "130",
85
+ "Data 6": "100"
86
+ },
87
+ {
88
+ "Date": "6/15/2016",
89
+ "Data 1": "90",
90
+ "Data 2": "220",
91
+ "Data 3": "320",
92
+ "Data 4": "100",
93
+ "Data 5": "220",
94
+ "Data 6": "300"
95
+ }
96
+ ],
97
+ "visualizationType": "Line",
98
+ "series": [
99
+ {
100
+ "dataKey": "Data 1",
101
+ "type": "Line"
102
+ },
103
+ {
104
+ "dataKey": "Data 2",
105
+ "type": "Line"
106
+ },
107
+ {
108
+ "dataKey": "Data 3",
109
+ "type": "Line"
110
+ },
111
+ {
112
+ "dataKey": "Data 4",
113
+ "type": "Line"
114
+ },
115
+ {
116
+ "dataKey": "Data 5",
117
+ "type": "Line"
118
+ },
119
+ {
120
+ "dataKey": "Data 6",
121
+ "type": "Line"
122
+ }
123
+ ]
124
+ }
@@ -1,12 +1,18 @@
1
1
  {
2
2
  "title": "Paired Bar Chart Example",
3
- "dataUrl": "/examples/paired-bar-data.json",
3
+ "dataUrl": "/examples/feature/paired-bar/paired-bar-data.json",
4
4
  "animate": true,
5
5
  "animateReplay": true,
6
6
  "visualizationType": "Paired Bar",
7
7
  "series": [
8
- { "dataKey": "Male", "type": "Paired Bar" },
9
- { "dataKey": "Female", "type": "Paired Bar" }
8
+ {
9
+ "dataKey": "Male",
10
+ "type": "Paired Bar"
11
+ },
12
+ {
13
+ "dataKey": "Female",
14
+ "type": "Paired Bar"
15
+ }
10
16
  ],
11
17
  "dataFormat": {
12
18
  "roundTo": 1,
@@ -47,4 +53,4 @@
47
53
  "runtime": {
48
54
  "horizontal": true
49
55
  }
50
- }
56
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "title": "Planet Radius (Pie Example)",
3
- "dataUrl": "/examples/planet-example-data.json",
3
+ "dataUrl": "/examples/feature/__data__/planet-example-data.json",
4
4
  "animate": true,
5
5
  "animateReplay": true,
6
6
  "visualizationType": "Pie",
@@ -27,4 +27,4 @@
27
27
  "label": "Data Table",
28
28
  "expanded": false
29
29
  }
30
- }
30
+ }
@@ -105,7 +105,7 @@
105
105
  "accent": true,
106
106
  "background": true
107
107
  },
108
- "dataUrl": "/examples/scatterplot-continuous.csv",
108
+ "dataUrl": "/examples/feature/scatterplot/scatterplot-continuous.csv",
109
109
  "visualizationType": "Scatter Plot",
110
110
  "description": "Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.",
111
111
  "dataDescription": {