@cdc/dashboard 4.26.3 → 4.26.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.
- package/CONFIG.md +219 -0
- package/README.md +60 -20
- package/dist/cdcdashboard-CY9IcPSi.es.js +6 -0
- package/dist/cdcdashboard-DlpiY3fQ.es.js +4 -0
- package/dist/cdcdashboard.js +61559 -58048
- package/examples/__data__/data-2.json +6 -0
- package/examples/__data__/data.json +6 -0
- package/examples/dashboard-conditions-filters-incomplete.json +221 -0
- package/examples/dashboard-missing-datasets-multi.json +174 -0
- package/examples/dashboard-missing-datasets-single.json +121 -0
- package/examples/dashboard-multi-dashboard-version-regression.json +146 -0
- package/examples/dashboard-shared-filter-row-delete-cleanup.json +186 -0
- package/examples/dashboard-stale-dataset-keys.json +181 -0
- package/examples/dashboard-tiered-filter-regression.json +190 -0
- package/examples/legend-issue.json +1 -1
- package/examples/minimal-example.json +34 -0
- package/examples/private/cfa-dashboard.json +651 -0
- package/examples/private/data-bite-wrap.json +6936 -0
- package/examples/private/dengue.json +4640 -0
- package/examples/private/link_to_file.json +16662 -0
- package/examples/private/multi-dash-fix.json +16963 -0
- package/examples/private/versions.json +41612 -0
- package/examples/sankey.json +3 -3
- package/examples/test-api-filter-reset.json +4 -4
- package/examples/tp5-test.json +86 -4
- package/examples/us-map-filter-example.json +1074 -0
- package/package.json +9 -9
- package/src/CdcDashboard.tsx +6 -2
- package/src/CdcDashboardComponent.tsx +179 -88
- package/src/DashboardCopyPasteContext.test.tsx +33 -0
- package/src/DashboardCopyPasteContext.tsx +48 -0
- package/src/_stories/Dashboard.EditorRegression.stories.tsx +72 -0
- package/src/_stories/Dashboard.Regression.stories.tsx +196 -0
- package/src/_stories/Dashboard.Zoom.stories.tsx +88 -0
- package/src/_stories/Dashboard.smoke.stories.tsx +33 -0
- package/src/_stories/Dashboard.stories.tsx +337 -2
- package/src/_stories/FilteredTextMigrationComparison.stories.tsx +87 -0
- package/src/_stories/_mock/dashboard-data-driven-colors.json +171 -0
- package/src/_stories/_mock/tp5-test.json +86 -5
- package/src/components/Column.test.tsx +176 -0
- package/src/components/Column.tsx +214 -13
- package/src/components/DashboardConditionModal.test.tsx +420 -0
- package/src/components/DashboardConditionModal.tsx +367 -0
- package/src/components/DashboardConditionSummary.tsx +59 -0
- package/src/components/DashboardEditors.tsx +23 -0
- package/src/components/DashboardFilters/DashboardFilters.test.tsx +267 -0
- package/src/components/DashboardFilters/DashboardFilters.tsx +193 -172
- package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.test.tsx +164 -0
- package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +46 -6
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/APIModal.tsx +5 -3
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +59 -58
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +304 -0
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +43 -36
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +2 -2
- package/src/components/DashboardFilters/DashboardFiltersWrapper.test.tsx +142 -0
- package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +32 -27
- package/src/components/DashboardFilters/dashboardfilter.styles.css +42 -27
- package/src/components/DataDesignerModal.tsx +2 -1
- package/src/components/ExpandCollapseButtons.tsx +6 -4
- package/src/components/Grid.tsx +12 -7
- package/src/components/Header/Header.tsx +36 -17
- package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +141 -140
- package/src/components/Row.test.tsx +228 -0
- package/src/components/Row.tsx +104 -28
- package/src/components/VisualizationRow.test.tsx +396 -0
- package/src/components/VisualizationRow.tsx +177 -51
- package/src/components/VisualizationsPanel/VisualizationsPanel.test.tsx +49 -0
- package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +14 -13
- package/src/components/Widget/Widget.test.tsx +218 -0
- package/src/components/Widget/Widget.tsx +123 -20
- package/src/components/Widget/widget.styles.css +58 -14
- package/src/components/dashboard-condition-modal.css +76 -0
- package/src/components/dashboard-condition-summary.css +87 -0
- package/src/data/initial-state.js +1 -0
- package/src/helpers/addValuesToDashboardFilters.ts +3 -5
- package/src/helpers/addVisualization.ts +17 -4
- package/src/helpers/cloneDashboardWidget.ts +127 -0
- package/src/helpers/dashboardColumnWidgets.ts +99 -0
- package/src/helpers/dashboardConditionUi.ts +47 -0
- package/src/helpers/dashboardConditions.ts +200 -0
- package/src/helpers/dashboardFilterTargets.ts +156 -0
- package/src/helpers/filterData.ts +4 -9
- package/src/helpers/filterVisibility.ts +20 -0
- package/src/helpers/formatConfigBeforeSave.ts +2 -2
- package/src/helpers/getFilteredData.ts +18 -5
- package/src/helpers/getUpdateConfig.ts +43 -12
- package/src/helpers/getVizRowColumnLocator.ts +11 -1
- package/src/helpers/iconHash.tsx +9 -3
- package/src/helpers/mapDataToConfig.ts +31 -29
- package/src/helpers/reloadURLHelpers.ts +25 -5
- package/src/helpers/removeDashboardFilter.ts +33 -33
- package/src/helpers/tests/addVisualization.test.ts +53 -9
- package/src/helpers/tests/cloneDashboardWidget.test.ts +136 -0
- package/src/helpers/tests/dashboardColumnWidgets.test.ts +99 -0
- package/src/helpers/tests/dashboardConditionUi.test.ts +41 -0
- package/src/helpers/tests/dashboardConditions.test.ts +428 -0
- package/src/helpers/tests/formatConfigBeforeSave.test.ts +51 -0
- package/src/helpers/tests/getFilteredData.test.ts +265 -86
- package/src/helpers/tests/getUpdateConfig.test.ts +338 -0
- package/src/helpers/tests/reloadURLHelpers.test.ts +394 -238
- package/src/index.tsx +6 -3
- package/src/scss/grid.scss +281 -22
- package/src/scss/main.scss +215 -64
- package/src/store/dashboard.actions.ts +17 -4
- package/src/store/dashboard.reducer.test.ts +538 -0
- package/src/store/dashboard.reducer.ts +136 -22
- package/src/test/CdcDashboard.test.jsx +24 -0
- package/src/test/CdcDashboard.test.tsx +148 -0
- package/src/test/CdcDashboardComponent.test.tsx +935 -2
- package/src/types/ConfigRow.ts +15 -0
- package/src/types/DashboardFilters.ts +4 -0
- package/src/types/SharedFilter.ts +2 -0
- package/tests/fixtures/dashboard-config-with-metadata.json +1 -1
- package/dist/cdcdashboard-vr9HZwRt.es.js +0 -6
- package/examples/DEV-6574.json +0 -2224
- package/examples/api-dashboard-data.json +0 -272
- package/examples/api-dashboard-years.json +0 -11
- package/examples/api-geographies-data.json +0 -11
- package/examples/chart-data.json +0 -5409
- package/examples/custom/css/respiratory.css +0 -236
- package/examples/custom/js/respiratory.js +0 -242
- package/examples/default-data.json +0 -368
- package/examples/default-filter-control.json +0 -209
- package/examples/default-multi-dataset-shared-filter.json +0 -1729
- package/examples/default-multi-dataset.json +0 -506
- package/examples/ed-visits-county-file.json +0 -402
- package/examples/filters/Alabama.json +0 -72
- package/examples/filters/Alaska.json +0 -1737
- package/examples/filters/Arkansas.json +0 -4713
- package/examples/filters/California.json +0 -212
- package/examples/filters/Colorado.json +0 -1500
- package/examples/filters/Connecticut.json +0 -559
- package/examples/filters/Delaware.json +0 -63
- package/examples/filters/DistrictofColumbia.json +0 -63
- package/examples/filters/Florida.json +0 -4217
- package/examples/filters/States.json +0 -146
- package/examples/state-level.json +0 -90136
- package/examples/state-points.json +0 -10474
- package/examples/temp-example-data.json +0 -130
- package/examples/test-dashboard-simple.json +0 -503
- package/examples/test-example.json +0 -752
- package/examples/test-file.json +0 -147
- package/examples/test.json +0 -752
- package/examples/testing.json +0 -94456
- /package/examples/{data → __data__}/data-with-metadata.json +0 -0
- /package/examples/{legend-issue-data.json → __data__/legend-issue-data.json} +0 -0
- /package/examples/api-test/{categories.json → __data__/categories.json} +0 -0
- /package/examples/api-test/{chart-data.json → __data__/chart-data.json} +0 -0
- /package/examples/api-test/{topics.json → __data__/topics.json} +0 -0
- /package/examples/api-test/{years.json → __data__/years.json} +0 -0
- /package/src/_stories/{Dashboard.Pages.stories.tsx → Dashboard.Pages.smoke.stories.tsx} +0 -0
|
@@ -1,1729 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"dashboard": {
|
|
3
|
-
"sharedFilters": [
|
|
4
|
-
{
|
|
5
|
-
"key": "Wind",
|
|
6
|
-
"type": "datafilter",
|
|
7
|
-
"showDropdown": true,
|
|
8
|
-
"usedBy": [
|
|
9
|
-
"chart1"
|
|
10
|
-
],
|
|
11
|
-
"columnName": "wind",
|
|
12
|
-
"values": [
|
|
13
|
-
"Include Wind",
|
|
14
|
-
"Don't Include Wind"
|
|
15
|
-
],
|
|
16
|
-
"active": "Include Wind",
|
|
17
|
-
"tier": 1
|
|
18
|
-
}
|
|
19
|
-
]
|
|
20
|
-
},
|
|
21
|
-
"rows": [
|
|
22
|
-
{
|
|
23
|
-
"columns": [
|
|
24
|
-
{
|
|
25
|
-
"width": 12,
|
|
26
|
-
"widget": "chart1"
|
|
27
|
-
},
|
|
28
|
-
{},
|
|
29
|
-
{}
|
|
30
|
-
]
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"columns": [
|
|
34
|
-
{
|
|
35
|
-
"width": 12,
|
|
36
|
-
"widget": "map1"
|
|
37
|
-
},
|
|
38
|
-
{},
|
|
39
|
-
{}
|
|
40
|
-
]
|
|
41
|
-
}
|
|
42
|
-
],
|
|
43
|
-
"visualizations": {
|
|
44
|
-
"chart1": {
|
|
45
|
-
"annotations": [],
|
|
46
|
-
"type": "chart",
|
|
47
|
-
"debugSvg": false,
|
|
48
|
-
"chartMessage": {
|
|
49
|
-
"noData": "No Data Available"
|
|
50
|
-
},
|
|
51
|
-
"title": "Average Temperature By City (Line Example)",
|
|
52
|
-
"showTitle": true,
|
|
53
|
-
"showDownloadMediaButton": false,
|
|
54
|
-
"theme": "theme-blue",
|
|
55
|
-
"animate": false,
|
|
56
|
-
"fontSize": "large",
|
|
57
|
-
"lineDatapointStyle": "hover",
|
|
58
|
-
"lineDatapointColor": "Same as Line",
|
|
59
|
-
"barHasBorder": "false",
|
|
60
|
-
"isLollipopChart": false,
|
|
61
|
-
"lollipopShape": "circle",
|
|
62
|
-
"lollipopColorStyle": "two-tone",
|
|
63
|
-
"visualizationSubType": "regular",
|
|
64
|
-
"barStyle": "flat",
|
|
65
|
-
"roundingStyle": "standard",
|
|
66
|
-
"tipRounding": "top",
|
|
67
|
-
"isResponsiveTicks": false,
|
|
68
|
-
"general": {
|
|
69
|
-
"showDownloadButton": false,
|
|
70
|
-
"showMissingDataLabel": true,
|
|
71
|
-
"showSuppressedSymbol": true,
|
|
72
|
-
"showZeroValueDataLabel": true
|
|
73
|
-
},
|
|
74
|
-
"padding": {
|
|
75
|
-
"left": 15,
|
|
76
|
-
"right": 15
|
|
77
|
-
},
|
|
78
|
-
"preliminaryData": [],
|
|
79
|
-
"yAxis": {
|
|
80
|
-
"hideAxis": false,
|
|
81
|
-
"displayNumbersOnBar": false,
|
|
82
|
-
"hideLabel": false,
|
|
83
|
-
"hideTicks": false,
|
|
84
|
-
"size": 50,
|
|
85
|
-
"gridLines": false,
|
|
86
|
-
"enablePadding": false,
|
|
87
|
-
"min": "",
|
|
88
|
-
"max": "",
|
|
89
|
-
"labelColor": "#333",
|
|
90
|
-
"tickLabelColor": "#333",
|
|
91
|
-
"tickColor": "#333",
|
|
92
|
-
"rightHideAxis": true,
|
|
93
|
-
"rightAxisSize": 0,
|
|
94
|
-
"rightLabel": "",
|
|
95
|
-
"rightLabelOffsetSize": 0,
|
|
96
|
-
"rightAxisLabelColor": "#333",
|
|
97
|
-
"rightAxisTickLabelColor": "#333",
|
|
98
|
-
"rightAxisTickColor": "#333",
|
|
99
|
-
"numTicks": "",
|
|
100
|
-
"axisPadding": 0,
|
|
101
|
-
"scalePadding": 10,
|
|
102
|
-
"tickRotation": 0,
|
|
103
|
-
"anchors": [],
|
|
104
|
-
"shoMissingDataLabel": true,
|
|
105
|
-
"showMissingDataLine": true,
|
|
106
|
-
"label": "Temperature",
|
|
107
|
-
"paddingPercent": 0.15
|
|
108
|
-
},
|
|
109
|
-
"boxplot": {
|
|
110
|
-
"plots": [],
|
|
111
|
-
"borders": "true",
|
|
112
|
-
"firstQuartilePercentage": 25,
|
|
113
|
-
"thirdQuartilePercentage": 75,
|
|
114
|
-
"boxWidthPercentage": 40,
|
|
115
|
-
"plotOutlierValues": false,
|
|
116
|
-
"plotNonOutlierValues": true,
|
|
117
|
-
"legend": {
|
|
118
|
-
"showHowToReadText": false,
|
|
119
|
-
"howToReadText": ""
|
|
120
|
-
},
|
|
121
|
-
"labels": {
|
|
122
|
-
"q1": "Lower Quartile",
|
|
123
|
-
"q2": "q2",
|
|
124
|
-
"q3": "Upper Quartile",
|
|
125
|
-
"q4": "q4",
|
|
126
|
-
"minimum": "Minimum",
|
|
127
|
-
"maximum": "Maximum",
|
|
128
|
-
"mean": "Mean",
|
|
129
|
-
"median": "Median",
|
|
130
|
-
"sd": "Standard Deviation",
|
|
131
|
-
"iqr": "Interquartile Range",
|
|
132
|
-
"total": "Total",
|
|
133
|
-
"outliers": "Outliers",
|
|
134
|
-
"values": "Values",
|
|
135
|
-
"lowerBounds": "Lower Bounds",
|
|
136
|
-
"upperBounds": "Upper Bounds"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
"topAxis": {
|
|
140
|
-
"hasLine": false
|
|
141
|
-
},
|
|
142
|
-
"isLegendValue": false,
|
|
143
|
-
"barThickness": 0.35,
|
|
144
|
-
"barHeight": 25,
|
|
145
|
-
"barSpace": 15,
|
|
146
|
-
"heights": {
|
|
147
|
-
"vertical": 300,
|
|
148
|
-
"horizontal": 750
|
|
149
|
-
},
|
|
150
|
-
"xAxis": {
|
|
151
|
-
"sortDates": false,
|
|
152
|
-
"anchors": [],
|
|
153
|
-
"type": "date",
|
|
154
|
-
"showTargetLabel": true,
|
|
155
|
-
"targetLabel": "Target",
|
|
156
|
-
"hideAxis": false,
|
|
157
|
-
"hideLabel": false,
|
|
158
|
-
"hideTicks": false,
|
|
159
|
-
"size": 75,
|
|
160
|
-
"tickRotation": 50,
|
|
161
|
-
"min": "",
|
|
162
|
-
"max": "",
|
|
163
|
-
"labelColor": "#333",
|
|
164
|
-
"tickLabelColor": "#333",
|
|
165
|
-
"tickColor": "#333",
|
|
166
|
-
"numTicks": 8,
|
|
167
|
-
"labelOffset": 65,
|
|
168
|
-
"axisPadding": 200,
|
|
169
|
-
"target": 0,
|
|
170
|
-
"maxTickRotation": 0,
|
|
171
|
-
"label": "Date",
|
|
172
|
-
"dataKey": "date",
|
|
173
|
-
"dateParseFormat": "%Y-%m-%d",
|
|
174
|
-
"dateDisplayFormat": "%b %d",
|
|
175
|
-
"tickWidthMax": 59,
|
|
176
|
-
"padding": 6
|
|
177
|
-
},
|
|
178
|
-
"table": {
|
|
179
|
-
"label": "Data Table",
|
|
180
|
-
"expanded": false,
|
|
181
|
-
"limitHeight": false,
|
|
182
|
-
"height": "",
|
|
183
|
-
"caption": "",
|
|
184
|
-
"showDownloadUrl": false,
|
|
185
|
-
"showDataTableLink": true,
|
|
186
|
-
"indexLabel": "",
|
|
187
|
-
"download": true,
|
|
188
|
-
"showVertical": false,
|
|
189
|
-
"dateDisplayFormat": "",
|
|
190
|
-
"showMissingDataLabel": true,
|
|
191
|
-
"showSuppressedSymbol": true,
|
|
192
|
-
"show": false
|
|
193
|
-
},
|
|
194
|
-
"orientation": "vertical",
|
|
195
|
-
"color": "pinkpurple",
|
|
196
|
-
"columns": {},
|
|
197
|
-
"legend": {
|
|
198
|
-
"hide": false,
|
|
199
|
-
"behavior": "isolate",
|
|
200
|
-
"axisAlign": true,
|
|
201
|
-
"singleRow": true,
|
|
202
|
-
"colorCode": "",
|
|
203
|
-
"reverseLabelOrder": false,
|
|
204
|
-
"description": "",
|
|
205
|
-
"dynamicLegend": false,
|
|
206
|
-
"dynamicLegendDefaultText": "Show All",
|
|
207
|
-
"dynamicLegendItemLimit": 5,
|
|
208
|
-
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
209
|
-
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
210
|
-
"lineMode": false,
|
|
211
|
-
"verticalSorted": false,
|
|
212
|
-
"highlightOnHover": false,
|
|
213
|
-
"hideSuppressedLabels": false,
|
|
214
|
-
"seriesHighlight": [],
|
|
215
|
-
"label": "Legend",
|
|
216
|
-
"above": true,
|
|
217
|
-
"left": true
|
|
218
|
-
},
|
|
219
|
-
"brush": {
|
|
220
|
-
"height": 25,
|
|
221
|
-
"active": false
|
|
222
|
-
},
|
|
223
|
-
"exclusions": {
|
|
224
|
-
"active": false,
|
|
225
|
-
"keys": []
|
|
226
|
-
},
|
|
227
|
-
"palette": "qualitative-bold",
|
|
228
|
-
"isPaletteReversed": false,
|
|
229
|
-
"twoColor": {
|
|
230
|
-
"palette": "monochrome-1",
|
|
231
|
-
"isPaletteReversed": false
|
|
232
|
-
},
|
|
233
|
-
"labels": false,
|
|
234
|
-
"dataFormat": {
|
|
235
|
-
"commas": false,
|
|
236
|
-
"prefix": "",
|
|
237
|
-
"suffix": "°",
|
|
238
|
-
"abbreviated": false,
|
|
239
|
-
"bottomSuffix": "",
|
|
240
|
-
"bottomPrefix": "",
|
|
241
|
-
"bottomAbbreviated": false
|
|
242
|
-
},
|
|
243
|
-
"confidenceKeys": {},
|
|
244
|
-
"visual": {
|
|
245
|
-
"border": true,
|
|
246
|
-
"accent": true,
|
|
247
|
-
"background": true,
|
|
248
|
-
"verticalHoverLine": false,
|
|
249
|
-
"horizontalHoverLine": false
|
|
250
|
-
},
|
|
251
|
-
"useLogScale": false,
|
|
252
|
-
"filterBehavior": "Filter Change",
|
|
253
|
-
"highlightedBarValues": [],
|
|
254
|
-
"series": [
|
|
255
|
-
{
|
|
256
|
-
"dataKey": "New York",
|
|
257
|
-
"type": "Line",
|
|
258
|
-
"axis": "Left",
|
|
259
|
-
"tooltip": true
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"dataKey": "San Francisco",
|
|
263
|
-
"type": "Line",
|
|
264
|
-
"axis": "Left",
|
|
265
|
-
"tooltip": true
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"dataKey": "Austin",
|
|
269
|
-
"type": "Line",
|
|
270
|
-
"axis": "Left",
|
|
271
|
-
"tooltip": true
|
|
272
|
-
}
|
|
273
|
-
],
|
|
274
|
-
"tooltips": {
|
|
275
|
-
"opacity": 90,
|
|
276
|
-
"singleSeries": false,
|
|
277
|
-
"dateDisplayFormat": ""
|
|
278
|
-
},
|
|
279
|
-
"forestPlot": {
|
|
280
|
-
"startAt": 0,
|
|
281
|
-
"colors": {
|
|
282
|
-
"line": "",
|
|
283
|
-
"shape": ""
|
|
284
|
-
},
|
|
285
|
-
"lineOfNoEffect": {
|
|
286
|
-
"show": true
|
|
287
|
-
},
|
|
288
|
-
"type": "",
|
|
289
|
-
"pooledResult": {
|
|
290
|
-
"diamondHeight": 5,
|
|
291
|
-
"column": ""
|
|
292
|
-
},
|
|
293
|
-
"estimateField": "",
|
|
294
|
-
"estimateRadius": "",
|
|
295
|
-
"shape": "square",
|
|
296
|
-
"rowHeight": 20,
|
|
297
|
-
"description": {
|
|
298
|
-
"show": true,
|
|
299
|
-
"text": "description",
|
|
300
|
-
"location": 0
|
|
301
|
-
},
|
|
302
|
-
"result": {
|
|
303
|
-
"show": true,
|
|
304
|
-
"text": "result",
|
|
305
|
-
"location": 100
|
|
306
|
-
},
|
|
307
|
-
"radius": {
|
|
308
|
-
"min": 2,
|
|
309
|
-
"max": 10,
|
|
310
|
-
"scalingColumn": ""
|
|
311
|
-
},
|
|
312
|
-
"regression": {
|
|
313
|
-
"lower": 0,
|
|
314
|
-
"upper": 0,
|
|
315
|
-
"estimateField": 0
|
|
316
|
-
},
|
|
317
|
-
"leftWidthOffset": 0,
|
|
318
|
-
"rightWidthOffset": 0,
|
|
319
|
-
"showZeroLine": false,
|
|
320
|
-
"leftLabel": "",
|
|
321
|
-
"rightLabel": ""
|
|
322
|
-
},
|
|
323
|
-
"area": {
|
|
324
|
-
"isStacked": false
|
|
325
|
-
},
|
|
326
|
-
"sankey": {
|
|
327
|
-
"title": {
|
|
328
|
-
"defaultColor": "black"
|
|
329
|
-
},
|
|
330
|
-
"iterations": 1,
|
|
331
|
-
"rxValue": 0.9,
|
|
332
|
-
"overallSize": {
|
|
333
|
-
"width": 900,
|
|
334
|
-
"height": 700
|
|
335
|
-
},
|
|
336
|
-
"margin": {
|
|
337
|
-
"margin_y": 25,
|
|
338
|
-
"margin_x": 0
|
|
339
|
-
},
|
|
340
|
-
"nodeSize": {
|
|
341
|
-
"nodeWidth": 26,
|
|
342
|
-
"nodeHeight": 40
|
|
343
|
-
},
|
|
344
|
-
"nodePadding": 55,
|
|
345
|
-
"nodeFontColor": "black",
|
|
346
|
-
"nodeColor": {
|
|
347
|
-
"default": "#ff8500",
|
|
348
|
-
"inactive": "#808080"
|
|
349
|
-
},
|
|
350
|
-
"linkColor": {
|
|
351
|
-
"default": "#ffc900",
|
|
352
|
-
"inactive": "#D3D3D3"
|
|
353
|
-
},
|
|
354
|
-
"opacity": {
|
|
355
|
-
"nodeOpacityDefault": 1,
|
|
356
|
-
"nodeOpacityInactive": 0.1,
|
|
357
|
-
"LinkOpacityDefault": 1,
|
|
358
|
-
"LinkOpacityInactive": 0.1
|
|
359
|
-
},
|
|
360
|
-
"storyNodeFontColor": "#006778",
|
|
361
|
-
"storyNodeText": [],
|
|
362
|
-
"nodeValueStyle": {
|
|
363
|
-
"textBefore": "(",
|
|
364
|
-
"textAfter": ")"
|
|
365
|
-
},
|
|
366
|
-
"data": []
|
|
367
|
-
},
|
|
368
|
-
"uid": "chart1",
|
|
369
|
-
"dataKey": "data2",
|
|
370
|
-
"description": "<p>Average temperature from October 1st through August 29th in:</p><ul><li>New York</li><li>San Francisco</li><li>Austin</li></ul>",
|
|
371
|
-
"visualizationType": "Line",
|
|
372
|
-
"filters": [
|
|
373
|
-
{
|
|
374
|
-
"label": "Humidity",
|
|
375
|
-
"columnName": "humidity",
|
|
376
|
-
"values": [
|
|
377
|
-
"Don't Include Humidiy",
|
|
378
|
-
"Include Humidiy"
|
|
379
|
-
],
|
|
380
|
-
"active": "Don't Include Humidiy",
|
|
381
|
-
"filterStyle": "dropdown",
|
|
382
|
-
"order": "asc"
|
|
383
|
-
}
|
|
384
|
-
],
|
|
385
|
-
"seriesLabel": "City",
|
|
386
|
-
"regions": [
|
|
387
|
-
{
|
|
388
|
-
"label": "Region",
|
|
389
|
-
"color": "black",
|
|
390
|
-
"background": "green",
|
|
391
|
-
"from": "2011-10-02",
|
|
392
|
-
"to": "2011-10-03"
|
|
393
|
-
}
|
|
394
|
-
],
|
|
395
|
-
"formattedData": [
|
|
396
|
-
{
|
|
397
|
-
"date": "2011-10-01",
|
|
398
|
-
"New York": "89.4",
|
|
399
|
-
"San Francisco": "26.7",
|
|
400
|
-
"Austin": "34.2",
|
|
401
|
-
"wind": "Include Winderwall",
|
|
402
|
-
"humidity": "Include Humidiy"
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
"date": "2011-10-02",
|
|
406
|
-
"New York": "54.0",
|
|
407
|
-
"San Francisco": "59.9",
|
|
408
|
-
"Austin": "68.7",
|
|
409
|
-
"wind": "Include Winderwall",
|
|
410
|
-
"humidity": "Include Humidiy"
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
"date": "2011-10-03",
|
|
414
|
-
"New York": "51.3",
|
|
415
|
-
"San Francisco": "53.1",
|
|
416
|
-
"Austin": "64.4",
|
|
417
|
-
"wind": "Include Winderwall",
|
|
418
|
-
"humidity": "Include Humidiy"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"date": "2011-10-04",
|
|
422
|
-
"New York": "34.7",
|
|
423
|
-
"San Francisco": "56.8",
|
|
424
|
-
"Austin": "98.0",
|
|
425
|
-
"wind": "Include Winderwall",
|
|
426
|
-
"humidity": "Include Humidiy"
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
"date": "2011-10-01",
|
|
430
|
-
"New York": "32.4",
|
|
431
|
-
"San Francisco": "43.7",
|
|
432
|
-
"Austin": "54.2",
|
|
433
|
-
"wind": "Don't Include Wind",
|
|
434
|
-
"humidity": "Include Humidiy"
|
|
435
|
-
},
|
|
436
|
-
{
|
|
437
|
-
"date": "2011-10-02",
|
|
438
|
-
"New York": "65.0",
|
|
439
|
-
"San Francisco": "76.9",
|
|
440
|
-
"Austin": "87.7",
|
|
441
|
-
"wind": "Don't Include Wind",
|
|
442
|
-
"humidity": "Include Humidiy"
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
"date": "2011-10-03",
|
|
446
|
-
"New York": "53.3",
|
|
447
|
-
"San Francisco": "59.1",
|
|
448
|
-
"Austin": "69.4",
|
|
449
|
-
"wind": "Don't Include Wind",
|
|
450
|
-
"humidity": "Include Humidiy"
|
|
451
|
-
},
|
|
452
|
-
{
|
|
453
|
-
"date": "2011-10-04",
|
|
454
|
-
"New York": "55.7",
|
|
455
|
-
"San Francisco": "58.8",
|
|
456
|
-
"Austin": "68.0",
|
|
457
|
-
"wind": "Don't Include Wind",
|
|
458
|
-
"humidity": "Include Humidiy"
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
"date": "2011-10-01",
|
|
462
|
-
"New York": "63.4",
|
|
463
|
-
"San Francisco": "62.7",
|
|
464
|
-
"Austin": "72.2",
|
|
465
|
-
"wind": "Include Wind",
|
|
466
|
-
"humidity": "Don't Include Humidiy"
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
"date": "2011-10-02",
|
|
470
|
-
"New York": "58.0",
|
|
471
|
-
"San Francisco": "59.9",
|
|
472
|
-
"Austin": "67.7",
|
|
473
|
-
"wind": "Include Wind",
|
|
474
|
-
"humidity": "Don't Include Humidiy"
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"date": "2011-10-03",
|
|
478
|
-
"New York": "53.3",
|
|
479
|
-
"San Francisco": "59.1",
|
|
480
|
-
"Austin": "69.4",
|
|
481
|
-
"wind": "Include Wind",
|
|
482
|
-
"humidity": "Don't Include Humidiy"
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"date": "2011-10-04",
|
|
486
|
-
"New York": "55.7",
|
|
487
|
-
"San Francisco": "58.8",
|
|
488
|
-
"Austin": "68.0",
|
|
489
|
-
"wind": "Include Wind",
|
|
490
|
-
"humidity": "Don't Include Humidiy"
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
"date": "2011-10-01",
|
|
494
|
-
"New York": "63.4",
|
|
495
|
-
"San Francisco": "62.7",
|
|
496
|
-
"Austin": "87.2",
|
|
497
|
-
"wind": "Don't Include Wind",
|
|
498
|
-
"humidity": "Don't Include Humidiy"
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
"date": "2011-10-02",
|
|
502
|
-
"New York": "98.0",
|
|
503
|
-
"San Francisco": "59.9",
|
|
504
|
-
"Austin": "67.7",
|
|
505
|
-
"wind": "Don't Include Wind",
|
|
506
|
-
"humidity": "Don't Include Humidiy"
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
"date": "2011-10-03",
|
|
510
|
-
"New York": "53.3",
|
|
511
|
-
"San Francisco": "59.1",
|
|
512
|
-
"Austin": "69.4",
|
|
513
|
-
"wind": "Don't Include Wind",
|
|
514
|
-
"humidity": "Don't Include Humidiy"
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"date": "2011-10-04",
|
|
518
|
-
"New York": "55.7",
|
|
519
|
-
"San Francisco": "54.8",
|
|
520
|
-
"Austin": "68.0",
|
|
521
|
-
"wind": "Don't Include Wind",
|
|
522
|
-
"humidity": "Don't Include Humidiy"
|
|
523
|
-
}
|
|
524
|
-
],
|
|
525
|
-
"editing": false,
|
|
526
|
-
"originalFormattedData": [
|
|
527
|
-
{
|
|
528
|
-
"date": "2011-10-01",
|
|
529
|
-
"New York": "89.4",
|
|
530
|
-
"San Francisco": "26.7",
|
|
531
|
-
"Austin": "34.2",
|
|
532
|
-
"wind": "Include Winderwall",
|
|
533
|
-
"humidity": "Include Humidiy"
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"date": "2011-10-02",
|
|
537
|
-
"New York": "54.0",
|
|
538
|
-
"San Francisco": "59.9",
|
|
539
|
-
"Austin": "68.7",
|
|
540
|
-
"wind": "Include Winderwall",
|
|
541
|
-
"humidity": "Include Humidiy"
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"date": "2011-10-03",
|
|
545
|
-
"New York": "51.3",
|
|
546
|
-
"San Francisco": "53.1",
|
|
547
|
-
"Austin": "64.4",
|
|
548
|
-
"wind": "Include Winderwall",
|
|
549
|
-
"humidity": "Include Humidiy"
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
"date": "2011-10-04",
|
|
553
|
-
"New York": "34.7",
|
|
554
|
-
"San Francisco": "56.8",
|
|
555
|
-
"Austin": "98.0",
|
|
556
|
-
"wind": "Include Winderwall",
|
|
557
|
-
"humidity": "Include Humidiy"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"date": "2011-10-01",
|
|
561
|
-
"New York": "32.4",
|
|
562
|
-
"San Francisco": "43.7",
|
|
563
|
-
"Austin": "54.2",
|
|
564
|
-
"wind": "Don't Include Wind",
|
|
565
|
-
"humidity": "Include Humidiy"
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
"date": "2011-10-02",
|
|
569
|
-
"New York": "65.0",
|
|
570
|
-
"San Francisco": "76.9",
|
|
571
|
-
"Austin": "87.7",
|
|
572
|
-
"wind": "Don't Include Wind",
|
|
573
|
-
"humidity": "Include Humidiy"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"date": "2011-10-03",
|
|
577
|
-
"New York": "53.3",
|
|
578
|
-
"San Francisco": "59.1",
|
|
579
|
-
"Austin": "69.4",
|
|
580
|
-
"wind": "Don't Include Wind",
|
|
581
|
-
"humidity": "Include Humidiy"
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
"date": "2011-10-04",
|
|
585
|
-
"New York": "55.7",
|
|
586
|
-
"San Francisco": "58.8",
|
|
587
|
-
"Austin": "68.0",
|
|
588
|
-
"wind": "Don't Include Wind",
|
|
589
|
-
"humidity": "Include Humidiy"
|
|
590
|
-
},
|
|
591
|
-
{
|
|
592
|
-
"date": "2011-10-01",
|
|
593
|
-
"New York": "63.4",
|
|
594
|
-
"San Francisco": "62.7",
|
|
595
|
-
"Austin": "72.2",
|
|
596
|
-
"wind": "Include Wind",
|
|
597
|
-
"humidity": "Don't Include Humidiy"
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
"date": "2011-10-02",
|
|
601
|
-
"New York": "58.0",
|
|
602
|
-
"San Francisco": "59.9",
|
|
603
|
-
"Austin": "67.7",
|
|
604
|
-
"wind": "Include Wind",
|
|
605
|
-
"humidity": "Don't Include Humidiy"
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
"date": "2011-10-03",
|
|
609
|
-
"New York": "53.3",
|
|
610
|
-
"San Francisco": "59.1",
|
|
611
|
-
"Austin": "69.4",
|
|
612
|
-
"wind": "Include Wind",
|
|
613
|
-
"humidity": "Don't Include Humidiy"
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"date": "2011-10-04",
|
|
617
|
-
"New York": "55.7",
|
|
618
|
-
"San Francisco": "58.8",
|
|
619
|
-
"Austin": "68.0",
|
|
620
|
-
"wind": "Include Wind",
|
|
621
|
-
"humidity": "Don't Include Humidiy"
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"date": "2011-10-01",
|
|
625
|
-
"New York": "63.4",
|
|
626
|
-
"San Francisco": "62.7",
|
|
627
|
-
"Austin": "87.2",
|
|
628
|
-
"wind": "Don't Include Wind",
|
|
629
|
-
"humidity": "Don't Include Humidiy"
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
"date": "2011-10-02",
|
|
633
|
-
"New York": "98.0",
|
|
634
|
-
"San Francisco": "59.9",
|
|
635
|
-
"Austin": "67.7",
|
|
636
|
-
"wind": "Don't Include Wind",
|
|
637
|
-
"humidity": "Don't Include Humidiy"
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
"date": "2011-10-03",
|
|
641
|
-
"New York": "53.3",
|
|
642
|
-
"San Francisco": "59.1",
|
|
643
|
-
"Austin": "69.4",
|
|
644
|
-
"wind": "Don't Include Wind",
|
|
645
|
-
"humidity": "Don't Include Humidiy"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"date": "2011-10-04",
|
|
649
|
-
"New York": "55.7",
|
|
650
|
-
"San Francisco": "54.8",
|
|
651
|
-
"Austin": "68.0",
|
|
652
|
-
"wind": "Don't Include Wind",
|
|
653
|
-
"humidity": "Don't Include Humidiy"
|
|
654
|
-
}
|
|
655
|
-
],
|
|
656
|
-
"data": [
|
|
657
|
-
{
|
|
658
|
-
"date": "2011-10-01",
|
|
659
|
-
"New York": "89.4",
|
|
660
|
-
"San Francisco": "26.7",
|
|
661
|
-
"Austin": "34.2",
|
|
662
|
-
"wind": "Include Winderwall",
|
|
663
|
-
"humidity": "Include Humidiy"
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"date": "2011-10-02",
|
|
667
|
-
"New York": "54.0",
|
|
668
|
-
"San Francisco": "59.9",
|
|
669
|
-
"Austin": "68.7",
|
|
670
|
-
"wind": "Include Winderwall",
|
|
671
|
-
"humidity": "Include Humidiy"
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"date": "2011-10-03",
|
|
675
|
-
"New York": "51.3",
|
|
676
|
-
"San Francisco": "53.1",
|
|
677
|
-
"Austin": "64.4",
|
|
678
|
-
"wind": "Include Winderwall",
|
|
679
|
-
"humidity": "Include Humidiy"
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"date": "2011-10-04",
|
|
683
|
-
"New York": "34.7",
|
|
684
|
-
"San Francisco": "56.8",
|
|
685
|
-
"Austin": "98.0",
|
|
686
|
-
"wind": "Include Winderwall",
|
|
687
|
-
"humidity": "Include Humidiy"
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
"date": "2011-10-01",
|
|
691
|
-
"New York": "32.4",
|
|
692
|
-
"San Francisco": "43.7",
|
|
693
|
-
"Austin": "54.2",
|
|
694
|
-
"wind": "Don't Include Wind",
|
|
695
|
-
"humidity": "Include Humidiy"
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"date": "2011-10-02",
|
|
699
|
-
"New York": "65.0",
|
|
700
|
-
"San Francisco": "76.9",
|
|
701
|
-
"Austin": "87.7",
|
|
702
|
-
"wind": "Don't Include Wind",
|
|
703
|
-
"humidity": "Include Humidiy"
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"date": "2011-10-03",
|
|
707
|
-
"New York": "53.3",
|
|
708
|
-
"San Francisco": "59.1",
|
|
709
|
-
"Austin": "69.4",
|
|
710
|
-
"wind": "Don't Include Wind",
|
|
711
|
-
"humidity": "Include Humidiy"
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
"date": "2011-10-04",
|
|
715
|
-
"New York": "55.7",
|
|
716
|
-
"San Francisco": "58.8",
|
|
717
|
-
"Austin": "68.0",
|
|
718
|
-
"wind": "Don't Include Wind",
|
|
719
|
-
"humidity": "Include Humidiy"
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"date": "2011-10-01",
|
|
723
|
-
"New York": "63.4",
|
|
724
|
-
"San Francisco": "62.7",
|
|
725
|
-
"Austin": "72.2",
|
|
726
|
-
"wind": "Include Wind",
|
|
727
|
-
"humidity": "Don't Include Humidiy"
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
"date": "2011-10-02",
|
|
731
|
-
"New York": "58.0",
|
|
732
|
-
"San Francisco": "59.9",
|
|
733
|
-
"Austin": "67.7",
|
|
734
|
-
"wind": "Include Wind",
|
|
735
|
-
"humidity": "Don't Include Humidiy"
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"date": "2011-10-03",
|
|
739
|
-
"New York": "53.3",
|
|
740
|
-
"San Francisco": "59.1",
|
|
741
|
-
"Austin": "69.4",
|
|
742
|
-
"wind": "Include Wind",
|
|
743
|
-
"humidity": "Don't Include Humidiy"
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
"date": "2011-10-04",
|
|
747
|
-
"New York": "55.7",
|
|
748
|
-
"San Francisco": "58.8",
|
|
749
|
-
"Austin": "68.0",
|
|
750
|
-
"wind": "Include Wind",
|
|
751
|
-
"humidity": "Don't Include Humidiy"
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"date": "2011-10-01",
|
|
755
|
-
"New York": "63.4",
|
|
756
|
-
"San Francisco": "62.7",
|
|
757
|
-
"Austin": "87.2",
|
|
758
|
-
"wind": "Don't Include Wind",
|
|
759
|
-
"humidity": "Don't Include Humidiy"
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"date": "2011-10-02",
|
|
763
|
-
"New York": "98.0",
|
|
764
|
-
"San Francisco": "59.9",
|
|
765
|
-
"Austin": "67.7",
|
|
766
|
-
"wind": "Don't Include Wind",
|
|
767
|
-
"humidity": "Don't Include Humidiy"
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
"date": "2011-10-03",
|
|
771
|
-
"New York": "53.3",
|
|
772
|
-
"San Francisco": "59.1",
|
|
773
|
-
"Austin": "69.4",
|
|
774
|
-
"wind": "Don't Include Wind",
|
|
775
|
-
"humidity": "Don't Include Humidiy"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"date": "2011-10-04",
|
|
779
|
-
"New York": "55.7",
|
|
780
|
-
"San Francisco": "54.8",
|
|
781
|
-
"Austin": "68.0",
|
|
782
|
-
"wind": "Don't Include Wind",
|
|
783
|
-
"humidity": "Don't Include Humidiy"
|
|
784
|
-
}
|
|
785
|
-
],
|
|
786
|
-
"version": "4.24.4",
|
|
787
|
-
"dynamicMarginTop": 0
|
|
788
|
-
},
|
|
789
|
-
"map1": {
|
|
790
|
-
"uid": "map1",
|
|
791
|
-
"type": "map",
|
|
792
|
-
"defaultData": false,
|
|
793
|
-
"dataKey": "data1",
|
|
794
|
-
"general": {
|
|
795
|
-
"title": "Map Example",
|
|
796
|
-
"subtext": "",
|
|
797
|
-
"territoriesLabel": "Territories",
|
|
798
|
-
"type": "data",
|
|
799
|
-
"geoType": "us",
|
|
800
|
-
"headerColor": "theme-blue",
|
|
801
|
-
"showSidebar": true,
|
|
802
|
-
"showTitle": true,
|
|
803
|
-
"geoBorderColor": "darkGray",
|
|
804
|
-
"showDownloadButton": true,
|
|
805
|
-
"expandDataTable": true
|
|
806
|
-
},
|
|
807
|
-
"color": "pinkpurple",
|
|
808
|
-
"columns": {
|
|
809
|
-
"geo": {
|
|
810
|
-
"name": "state",
|
|
811
|
-
"label": "Location",
|
|
812
|
-
"tooltip": false,
|
|
813
|
-
"dataTable": true
|
|
814
|
-
},
|
|
815
|
-
"primary": {
|
|
816
|
-
"name": "Insured Rate",
|
|
817
|
-
"label": "Data Label",
|
|
818
|
-
"prefix": "",
|
|
819
|
-
"suffix": "%",
|
|
820
|
-
"dataTable": true,
|
|
821
|
-
"tooltip": true
|
|
822
|
-
},
|
|
823
|
-
"navigate": {
|
|
824
|
-
"name": "link",
|
|
825
|
-
"tooltip": false,
|
|
826
|
-
"dataTable": false
|
|
827
|
-
}
|
|
828
|
-
},
|
|
829
|
-
"legend": {
|
|
830
|
-
"numberOfItems": 3,
|
|
831
|
-
"position": "side",
|
|
832
|
-
"title": "Legend Title",
|
|
833
|
-
"description": "Legend Text",
|
|
834
|
-
"type": "equalnumber",
|
|
835
|
-
"specialClasses": [
|
|
836
|
-
"N/A"
|
|
837
|
-
]
|
|
838
|
-
},
|
|
839
|
-
"filters": [
|
|
840
|
-
{
|
|
841
|
-
"label": "Filter 2",
|
|
842
|
-
"columnName": "filter2"
|
|
843
|
-
}
|
|
844
|
-
],
|
|
845
|
-
"formattedData": [
|
|
846
|
-
{
|
|
847
|
-
"filter1": "option1",
|
|
848
|
-
"filter2": "sub option 1",
|
|
849
|
-
"Insured Rate": "43",
|
|
850
|
-
"state": "Alabama"
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
"filter1": "option1",
|
|
854
|
-
"filter2": "sub option 2",
|
|
855
|
-
"Insured Rate": "75",
|
|
856
|
-
"state": "Alabama"
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"filter1": "option1",
|
|
860
|
-
"filter2": "sub option 1",
|
|
861
|
-
"Insured Rate": "0",
|
|
862
|
-
"state": "Alaska"
|
|
863
|
-
},
|
|
864
|
-
{
|
|
865
|
-
"filter1": "option1",
|
|
866
|
-
"filter2": "sub option 1",
|
|
867
|
-
"Insured Rate": "72.7",
|
|
868
|
-
"state": "Arizona"
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
"filter1": "option1",
|
|
872
|
-
"filter2": "sub option 1",
|
|
873
|
-
"Insured Rate": "78.7",
|
|
874
|
-
"state": "Arkansas"
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
"filter1": "option1",
|
|
878
|
-
"filter2": "sub option 1",
|
|
879
|
-
"Insured Rate": "37.2",
|
|
880
|
-
"state": "California"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"filter1": "option1",
|
|
884
|
-
"filter2": "sub option 1",
|
|
885
|
-
"Insured Rate": "50.6",
|
|
886
|
-
"state": "Colorado"
|
|
887
|
-
},
|
|
888
|
-
{
|
|
889
|
-
"filter1": "option1",
|
|
890
|
-
"filter2": "sub option 1",
|
|
891
|
-
"Insured Rate": "83.2",
|
|
892
|
-
"state": "Connecticut"
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
"filter1": "option1",
|
|
896
|
-
"filter2": "sub option 1",
|
|
897
|
-
"Insured Rate": "90",
|
|
898
|
-
"state": "Delaware"
|
|
899
|
-
},
|
|
900
|
-
{
|
|
901
|
-
"filter1": "option1",
|
|
902
|
-
"filter2": "sub option 1",
|
|
903
|
-
"Insured Rate": "77",
|
|
904
|
-
"state": "District of Columbia"
|
|
905
|
-
},
|
|
906
|
-
{
|
|
907
|
-
"filter1": "option1",
|
|
908
|
-
"filter2": "sub option 1",
|
|
909
|
-
"Insured Rate": "83",
|
|
910
|
-
"state": "Florida"
|
|
911
|
-
},
|
|
912
|
-
{
|
|
913
|
-
"filter1": "option2",
|
|
914
|
-
"filter2": "sub option 1",
|
|
915
|
-
"Insured Rate": "100",
|
|
916
|
-
"state": "Alabama"
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
"filter1": "option2",
|
|
920
|
-
"filter2": "sub option 1",
|
|
921
|
-
"Insured Rate": "0",
|
|
922
|
-
"state": "Alaska"
|
|
923
|
-
},
|
|
924
|
-
{
|
|
925
|
-
"filter1": "option2",
|
|
926
|
-
"filter2": "sub option 1",
|
|
927
|
-
"Insured Rate": "72.7",
|
|
928
|
-
"state": "Arizona"
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"filter1": "option2",
|
|
932
|
-
"filter2": "sub option 1",
|
|
933
|
-
"Insured Rate": "78.7",
|
|
934
|
-
"state": "Arkansas"
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
"filter1": "option2",
|
|
938
|
-
"filter2": "sub option 1",
|
|
939
|
-
"Insured Rate": "37.2",
|
|
940
|
-
"state": "California"
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
"filter1": "option2",
|
|
944
|
-
"filter2": "sub option 1",
|
|
945
|
-
"Insured Rate": "50.6",
|
|
946
|
-
"state": "Colorado"
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"filter1": "option2",
|
|
950
|
-
"filter2": "sub option 1",
|
|
951
|
-
"Insured Rate": "83.2",
|
|
952
|
-
"state": "Connecticut"
|
|
953
|
-
},
|
|
954
|
-
{
|
|
955
|
-
"filter1": "option2",
|
|
956
|
-
"filter2": "sub option 1",
|
|
957
|
-
"Insured Rate": "90",
|
|
958
|
-
"state": "Delaware"
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"filter1": "option2",
|
|
962
|
-
"filter2": "sub option 1",
|
|
963
|
-
"Insured Rate": "77",
|
|
964
|
-
"state": "District of Columbia"
|
|
965
|
-
},
|
|
966
|
-
{
|
|
967
|
-
"filter1": "option2",
|
|
968
|
-
"filter2": "sub option 1",
|
|
969
|
-
"Insured Rate": "83",
|
|
970
|
-
"state": "Florida"
|
|
971
|
-
},
|
|
972
|
-
{
|
|
973
|
-
"filter1": "option3",
|
|
974
|
-
"filter2": "sub option 1",
|
|
975
|
-
"Insured Rate": "0",
|
|
976
|
-
"state": "Alabama"
|
|
977
|
-
},
|
|
978
|
-
{
|
|
979
|
-
"filter1": "option3",
|
|
980
|
-
"filter2": "sub option 1",
|
|
981
|
-
"Insured Rate": "0",
|
|
982
|
-
"state": "Alaska"
|
|
983
|
-
},
|
|
984
|
-
{
|
|
985
|
-
"filter1": "option3",
|
|
986
|
-
"filter2": "sub option 1",
|
|
987
|
-
"Insured Rate": "72.7",
|
|
988
|
-
"state": "Arizona"
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
"filter1": "option3",
|
|
992
|
-
"filter2": "sub option 1",
|
|
993
|
-
"Insured Rate": "78.7",
|
|
994
|
-
"state": "Arkansas"
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
"filter1": "option3",
|
|
998
|
-
"filter2": "sub option 1",
|
|
999
|
-
"Insured Rate": "37.2",
|
|
1000
|
-
"state": "California"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"filter1": "option3",
|
|
1004
|
-
"filter2": "sub option 1",
|
|
1005
|
-
"Insured Rate": "50.6",
|
|
1006
|
-
"state": "Colorado"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"filter1": "option3",
|
|
1010
|
-
"filter2": "sub option 1",
|
|
1011
|
-
"Insured Rate": "83.2",
|
|
1012
|
-
"state": "Connecticut"
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"filter1": "option3",
|
|
1016
|
-
"filter2": "sub option 1",
|
|
1017
|
-
"Insured Rate": "90",
|
|
1018
|
-
"state": "Delaware"
|
|
1019
|
-
},
|
|
1020
|
-
{
|
|
1021
|
-
"filter1": "option3",
|
|
1022
|
-
"filter2": "sub option 1",
|
|
1023
|
-
"Insured Rate": "77",
|
|
1024
|
-
"state": "District of Columbia"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"filter1": "option3",
|
|
1028
|
-
"filter2": "sub option 1",
|
|
1029
|
-
"Insured Rate": "83",
|
|
1030
|
-
"state": "Florida"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"filter1": "option1",
|
|
1034
|
-
"filter2": "sub option 2",
|
|
1035
|
-
"Insured Rate": "43",
|
|
1036
|
-
"state": "Alabama"
|
|
1037
|
-
},
|
|
1038
|
-
{
|
|
1039
|
-
"filter1": "option1",
|
|
1040
|
-
"filter2": "sub option 2",
|
|
1041
|
-
"Insured Rate": "0",
|
|
1042
|
-
"state": "Alaska"
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
"filter1": "option1",
|
|
1046
|
-
"filter2": "sub option 2",
|
|
1047
|
-
"Insured Rate": "72.7",
|
|
1048
|
-
"state": "Arizona"
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
"filter1": "option1",
|
|
1052
|
-
"filter2": "sub option 2",
|
|
1053
|
-
"Insured Rate": "78.7",
|
|
1054
|
-
"state": "Arkansas"
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"filter1": "option1",
|
|
1058
|
-
"filter2": "sub option 2",
|
|
1059
|
-
"Insured Rate": "37.2",
|
|
1060
|
-
"state": "California"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"filter1": "option1",
|
|
1064
|
-
"filter2": "sub option 2",
|
|
1065
|
-
"Insured Rate": "50.6",
|
|
1066
|
-
"state": "Colorado"
|
|
1067
|
-
},
|
|
1068
|
-
{
|
|
1069
|
-
"filter1": "option1",
|
|
1070
|
-
"filter2": "sub option 2",
|
|
1071
|
-
"Insured Rate": "83.2",
|
|
1072
|
-
"state": "Connecticut"
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"filter1": "option1",
|
|
1076
|
-
"filter2": "sub option 2",
|
|
1077
|
-
"Insured Rate": "90",
|
|
1078
|
-
"state": "Delaware"
|
|
1079
|
-
},
|
|
1080
|
-
{
|
|
1081
|
-
"filter1": "option1",
|
|
1082
|
-
"filter2": "sub option 2",
|
|
1083
|
-
"Insured Rate": "77",
|
|
1084
|
-
"state": "District of Columbia"
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"filter1": "option1",
|
|
1088
|
-
"filter2": "sub option 2",
|
|
1089
|
-
"Insured Rate": "83",
|
|
1090
|
-
"state": "Florida"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"filter1": "option2",
|
|
1094
|
-
"filter2": "sub option 2",
|
|
1095
|
-
"Insured Rate": "43",
|
|
1096
|
-
"state": "Alabama"
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
"filter1": "option2",
|
|
1100
|
-
"filter2": "sub option 2",
|
|
1101
|
-
"Insured Rate": "0",
|
|
1102
|
-
"state": "Alaska"
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
"filter1": "option2",
|
|
1106
|
-
"filter2": "sub option 2",
|
|
1107
|
-
"Insured Rate": "72.7",
|
|
1108
|
-
"state": "Arizona"
|
|
1109
|
-
},
|
|
1110
|
-
{
|
|
1111
|
-
"filter1": "option2",
|
|
1112
|
-
"filter2": "sub option 2",
|
|
1113
|
-
"Insured Rate": "78.7",
|
|
1114
|
-
"state": "Arkansas"
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
"filter1": "option2",
|
|
1118
|
-
"filter2": "sub option 2",
|
|
1119
|
-
"Insured Rate": "37.2",
|
|
1120
|
-
"state": "California"
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"filter1": "option2",
|
|
1124
|
-
"filter2": "sub option 2",
|
|
1125
|
-
"Insured Rate": "50.6",
|
|
1126
|
-
"state": "Colorado"
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
"filter1": "option2",
|
|
1130
|
-
"filter2": "sub option 2",
|
|
1131
|
-
"Insured Rate": "83.2",
|
|
1132
|
-
"state": "Connecticut"
|
|
1133
|
-
},
|
|
1134
|
-
{
|
|
1135
|
-
"filter1": "option2",
|
|
1136
|
-
"filter2": "sub option 2",
|
|
1137
|
-
"Insured Rate": "90",
|
|
1138
|
-
"state": "Delaware"
|
|
1139
|
-
},
|
|
1140
|
-
{
|
|
1141
|
-
"filter1": "option2",
|
|
1142
|
-
"filter2": "sub option 2",
|
|
1143
|
-
"Insured Rate": "77",
|
|
1144
|
-
"state": "District of Columbia"
|
|
1145
|
-
},
|
|
1146
|
-
{
|
|
1147
|
-
"filter1": "option2",
|
|
1148
|
-
"filter2": "sub option 2",
|
|
1149
|
-
"Insured Rate": "83",
|
|
1150
|
-
"state": "Florida"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"filter1": "option3",
|
|
1154
|
-
"filter2": "sub option 2",
|
|
1155
|
-
"Insured Rate": "43",
|
|
1156
|
-
"state": "Alabama"
|
|
1157
|
-
},
|
|
1158
|
-
{
|
|
1159
|
-
"filter1": "option3",
|
|
1160
|
-
"filter2": "sub option 2",
|
|
1161
|
-
"Insured Rate": "0",
|
|
1162
|
-
"state": "Alaska"
|
|
1163
|
-
},
|
|
1164
|
-
{
|
|
1165
|
-
"filter1": "option3",
|
|
1166
|
-
"filter2": "sub option 2",
|
|
1167
|
-
"Insured Rate": "72.7",
|
|
1168
|
-
"state": "Arizona"
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
"filter1": "option3",
|
|
1172
|
-
"filter2": "sub option 2",
|
|
1173
|
-
"Insured Rate": "78.7",
|
|
1174
|
-
"state": "Arkansas"
|
|
1175
|
-
},
|
|
1176
|
-
{
|
|
1177
|
-
"filter1": "option3",
|
|
1178
|
-
"filter2": "sub option 2",
|
|
1179
|
-
"Insured Rate": "37.2",
|
|
1180
|
-
"state": "California"
|
|
1181
|
-
},
|
|
1182
|
-
{
|
|
1183
|
-
"filter1": "option3",
|
|
1184
|
-
"filter2": "sub option 2",
|
|
1185
|
-
"Insured Rate": "50.6",
|
|
1186
|
-
"state": "Colorado"
|
|
1187
|
-
},
|
|
1188
|
-
{
|
|
1189
|
-
"filter1": "option3",
|
|
1190
|
-
"filter2": "sub option 2",
|
|
1191
|
-
"Insured Rate": "83.2",
|
|
1192
|
-
"state": "Connecticut"
|
|
1193
|
-
},
|
|
1194
|
-
{
|
|
1195
|
-
"filter1": "option3",
|
|
1196
|
-
"filter2": "sub option 2",
|
|
1197
|
-
"Insured Rate": "90",
|
|
1198
|
-
"state": "Delaware"
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
"filter1": "option3",
|
|
1202
|
-
"filter2": "sub option 2",
|
|
1203
|
-
"Insured Rate": "77",
|
|
1204
|
-
"state": "District of Columbia"
|
|
1205
|
-
},
|
|
1206
|
-
{
|
|
1207
|
-
"filter1": "option3",
|
|
1208
|
-
"filter2": "sub option 2",
|
|
1209
|
-
"Insured Rate": "83",
|
|
1210
|
-
"state": "Florida"
|
|
1211
|
-
}
|
|
1212
|
-
]
|
|
1213
|
-
}
|
|
1214
|
-
},
|
|
1215
|
-
"table": {
|
|
1216
|
-
"label": "Data Table",
|
|
1217
|
-
"show": true,
|
|
1218
|
-
"showDownloadUrl": false,
|
|
1219
|
-
"showVertical": true
|
|
1220
|
-
},
|
|
1221
|
-
"type": "dashboard",
|
|
1222
|
-
"datasets": {
|
|
1223
|
-
"data1": {
|
|
1224
|
-
"data": [
|
|
1225
|
-
{
|
|
1226
|
-
"filter1": "option1",
|
|
1227
|
-
"filter2": "sub option 1",
|
|
1228
|
-
"Insured Rate": "43",
|
|
1229
|
-
"state": "Alabama"
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
"filter1": "option1",
|
|
1233
|
-
"filter2": "sub option 2",
|
|
1234
|
-
"Insured Rate": "75",
|
|
1235
|
-
"state": "Alabama"
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"filter1": "option1",
|
|
1239
|
-
"filter2": "sub option 1",
|
|
1240
|
-
"Insured Rate": "0",
|
|
1241
|
-
"state": "Alaska"
|
|
1242
|
-
},
|
|
1243
|
-
{
|
|
1244
|
-
"filter1": "option1",
|
|
1245
|
-
"filter2": "sub option 1",
|
|
1246
|
-
"Insured Rate": "72.7",
|
|
1247
|
-
"state": "Arizona"
|
|
1248
|
-
},
|
|
1249
|
-
{
|
|
1250
|
-
"filter1": "option1",
|
|
1251
|
-
"filter2": "sub option 1",
|
|
1252
|
-
"Insured Rate": "78.7",
|
|
1253
|
-
"state": "Arkansas"
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
"filter1": "option1",
|
|
1257
|
-
"filter2": "sub option 1",
|
|
1258
|
-
"Insured Rate": "37.2",
|
|
1259
|
-
"state": "California"
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
"filter1": "option1",
|
|
1263
|
-
"filter2": "sub option 1",
|
|
1264
|
-
"Insured Rate": "50.6",
|
|
1265
|
-
"state": "Colorado"
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
"filter1": "option1",
|
|
1269
|
-
"filter2": "sub option 1",
|
|
1270
|
-
"Insured Rate": "83.2",
|
|
1271
|
-
"state": "Connecticut"
|
|
1272
|
-
},
|
|
1273
|
-
{
|
|
1274
|
-
"filter1": "option1",
|
|
1275
|
-
"filter2": "sub option 1",
|
|
1276
|
-
"Insured Rate": "90",
|
|
1277
|
-
"state": "Delaware"
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
"filter1": "option1",
|
|
1281
|
-
"filter2": "sub option 1",
|
|
1282
|
-
"Insured Rate": "77",
|
|
1283
|
-
"state": "District of Columbia"
|
|
1284
|
-
},
|
|
1285
|
-
{
|
|
1286
|
-
"filter1": "option1",
|
|
1287
|
-
"filter2": "sub option 1",
|
|
1288
|
-
"Insured Rate": "83",
|
|
1289
|
-
"state": "Florida"
|
|
1290
|
-
},
|
|
1291
|
-
{
|
|
1292
|
-
"filter1": "option2",
|
|
1293
|
-
"filter2": "sub option 1",
|
|
1294
|
-
"Insured Rate": "100",
|
|
1295
|
-
"state": "Alabama"
|
|
1296
|
-
},
|
|
1297
|
-
{
|
|
1298
|
-
"filter1": "option2",
|
|
1299
|
-
"filter2": "sub option 1",
|
|
1300
|
-
"Insured Rate": "0",
|
|
1301
|
-
"state": "Alaska"
|
|
1302
|
-
},
|
|
1303
|
-
{
|
|
1304
|
-
"filter1": "option2",
|
|
1305
|
-
"filter2": "sub option 1",
|
|
1306
|
-
"Insured Rate": "72.7",
|
|
1307
|
-
"state": "Arizona"
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1310
|
-
"filter1": "option2",
|
|
1311
|
-
"filter2": "sub option 1",
|
|
1312
|
-
"Insured Rate": "78.7",
|
|
1313
|
-
"state": "Arkansas"
|
|
1314
|
-
},
|
|
1315
|
-
{
|
|
1316
|
-
"filter1": "option2",
|
|
1317
|
-
"filter2": "sub option 1",
|
|
1318
|
-
"Insured Rate": "37.2",
|
|
1319
|
-
"state": "California"
|
|
1320
|
-
},
|
|
1321
|
-
{
|
|
1322
|
-
"filter1": "option2",
|
|
1323
|
-
"filter2": "sub option 1",
|
|
1324
|
-
"Insured Rate": "50.6",
|
|
1325
|
-
"state": "Colorado"
|
|
1326
|
-
},
|
|
1327
|
-
{
|
|
1328
|
-
"filter1": "option2",
|
|
1329
|
-
"filter2": "sub option 1",
|
|
1330
|
-
"Insured Rate": "83.2",
|
|
1331
|
-
"state": "Connecticut"
|
|
1332
|
-
},
|
|
1333
|
-
{
|
|
1334
|
-
"filter1": "option2",
|
|
1335
|
-
"filter2": "sub option 1",
|
|
1336
|
-
"Insured Rate": "90",
|
|
1337
|
-
"state": "Delaware"
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"filter1": "option2",
|
|
1341
|
-
"filter2": "sub option 1",
|
|
1342
|
-
"Insured Rate": "77",
|
|
1343
|
-
"state": "District of Columbia"
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
"filter1": "option2",
|
|
1347
|
-
"filter2": "sub option 1",
|
|
1348
|
-
"Insured Rate": "83",
|
|
1349
|
-
"state": "Florida"
|
|
1350
|
-
},
|
|
1351
|
-
{
|
|
1352
|
-
"filter1": "option3",
|
|
1353
|
-
"filter2": "sub option 1",
|
|
1354
|
-
"Insured Rate": "0",
|
|
1355
|
-
"state": "Alabama"
|
|
1356
|
-
},
|
|
1357
|
-
{
|
|
1358
|
-
"filter1": "option3",
|
|
1359
|
-
"filter2": "sub option 1",
|
|
1360
|
-
"Insured Rate": "0",
|
|
1361
|
-
"state": "Alaska"
|
|
1362
|
-
},
|
|
1363
|
-
{
|
|
1364
|
-
"filter1": "option3",
|
|
1365
|
-
"filter2": "sub option 1",
|
|
1366
|
-
"Insured Rate": "72.7",
|
|
1367
|
-
"state": "Arizona"
|
|
1368
|
-
},
|
|
1369
|
-
{
|
|
1370
|
-
"filter1": "option3",
|
|
1371
|
-
"filter2": "sub option 1",
|
|
1372
|
-
"Insured Rate": "78.7",
|
|
1373
|
-
"state": "Arkansas"
|
|
1374
|
-
},
|
|
1375
|
-
{
|
|
1376
|
-
"filter1": "option3",
|
|
1377
|
-
"filter2": "sub option 1",
|
|
1378
|
-
"Insured Rate": "37.2",
|
|
1379
|
-
"state": "California"
|
|
1380
|
-
},
|
|
1381
|
-
{
|
|
1382
|
-
"filter1": "option3",
|
|
1383
|
-
"filter2": "sub option 1",
|
|
1384
|
-
"Insured Rate": "50.6",
|
|
1385
|
-
"state": "Colorado"
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
"filter1": "option3",
|
|
1389
|
-
"filter2": "sub option 1",
|
|
1390
|
-
"Insured Rate": "83.2",
|
|
1391
|
-
"state": "Connecticut"
|
|
1392
|
-
},
|
|
1393
|
-
{
|
|
1394
|
-
"filter1": "option3",
|
|
1395
|
-
"filter2": "sub option 1",
|
|
1396
|
-
"Insured Rate": "90",
|
|
1397
|
-
"state": "Delaware"
|
|
1398
|
-
},
|
|
1399
|
-
{
|
|
1400
|
-
"filter1": "option3",
|
|
1401
|
-
"filter2": "sub option 1",
|
|
1402
|
-
"Insured Rate": "77",
|
|
1403
|
-
"state": "District of Columbia"
|
|
1404
|
-
},
|
|
1405
|
-
{
|
|
1406
|
-
"filter1": "option3",
|
|
1407
|
-
"filter2": "sub option 1",
|
|
1408
|
-
"Insured Rate": "83",
|
|
1409
|
-
"state": "Florida"
|
|
1410
|
-
},
|
|
1411
|
-
{
|
|
1412
|
-
"filter1": "option1",
|
|
1413
|
-
"filter2": "sub option 2",
|
|
1414
|
-
"Insured Rate": "43",
|
|
1415
|
-
"state": "Alabama"
|
|
1416
|
-
},
|
|
1417
|
-
{
|
|
1418
|
-
"filter1": "option1",
|
|
1419
|
-
"filter2": "sub option 2",
|
|
1420
|
-
"Insured Rate": "0",
|
|
1421
|
-
"state": "Alaska"
|
|
1422
|
-
},
|
|
1423
|
-
{
|
|
1424
|
-
"filter1": "option1",
|
|
1425
|
-
"filter2": "sub option 2",
|
|
1426
|
-
"Insured Rate": "72.7",
|
|
1427
|
-
"state": "Arizona"
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
"filter1": "option1",
|
|
1431
|
-
"filter2": "sub option 2",
|
|
1432
|
-
"Insured Rate": "78.7",
|
|
1433
|
-
"state": "Arkansas"
|
|
1434
|
-
},
|
|
1435
|
-
{
|
|
1436
|
-
"filter1": "option1",
|
|
1437
|
-
"filter2": "sub option 2",
|
|
1438
|
-
"Insured Rate": "37.2",
|
|
1439
|
-
"state": "California"
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"filter1": "option1",
|
|
1443
|
-
"filter2": "sub option 2",
|
|
1444
|
-
"Insured Rate": "50.6",
|
|
1445
|
-
"state": "Colorado"
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
"filter1": "option1",
|
|
1449
|
-
"filter2": "sub option 2",
|
|
1450
|
-
"Insured Rate": "83.2",
|
|
1451
|
-
"state": "Connecticut"
|
|
1452
|
-
},
|
|
1453
|
-
{
|
|
1454
|
-
"filter1": "option1",
|
|
1455
|
-
"filter2": "sub option 2",
|
|
1456
|
-
"Insured Rate": "90",
|
|
1457
|
-
"state": "Delaware"
|
|
1458
|
-
},
|
|
1459
|
-
{
|
|
1460
|
-
"filter1": "option1",
|
|
1461
|
-
"filter2": "sub option 2",
|
|
1462
|
-
"Insured Rate": "77",
|
|
1463
|
-
"state": "District of Columbia"
|
|
1464
|
-
},
|
|
1465
|
-
{
|
|
1466
|
-
"filter1": "option1",
|
|
1467
|
-
"filter2": "sub option 2",
|
|
1468
|
-
"Insured Rate": "83",
|
|
1469
|
-
"state": "Florida"
|
|
1470
|
-
},
|
|
1471
|
-
{
|
|
1472
|
-
"filter1": "option2",
|
|
1473
|
-
"filter2": "sub option 2",
|
|
1474
|
-
"Insured Rate": "43",
|
|
1475
|
-
"state": "Alabama"
|
|
1476
|
-
},
|
|
1477
|
-
{
|
|
1478
|
-
"filter1": "option2",
|
|
1479
|
-
"filter2": "sub option 2",
|
|
1480
|
-
"Insured Rate": "0",
|
|
1481
|
-
"state": "Alaska"
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
"filter1": "option2",
|
|
1485
|
-
"filter2": "sub option 2",
|
|
1486
|
-
"Insured Rate": "72.7",
|
|
1487
|
-
"state": "Arizona"
|
|
1488
|
-
},
|
|
1489
|
-
{
|
|
1490
|
-
"filter1": "option2",
|
|
1491
|
-
"filter2": "sub option 2",
|
|
1492
|
-
"Insured Rate": "78.7",
|
|
1493
|
-
"state": "Arkansas"
|
|
1494
|
-
},
|
|
1495
|
-
{
|
|
1496
|
-
"filter1": "option2",
|
|
1497
|
-
"filter2": "sub option 2",
|
|
1498
|
-
"Insured Rate": "37.2",
|
|
1499
|
-
"state": "California"
|
|
1500
|
-
},
|
|
1501
|
-
{
|
|
1502
|
-
"filter1": "option2",
|
|
1503
|
-
"filter2": "sub option 2",
|
|
1504
|
-
"Insured Rate": "50.6",
|
|
1505
|
-
"state": "Colorado"
|
|
1506
|
-
},
|
|
1507
|
-
{
|
|
1508
|
-
"filter1": "option2",
|
|
1509
|
-
"filter2": "sub option 2",
|
|
1510
|
-
"Insured Rate": "83.2",
|
|
1511
|
-
"state": "Connecticut"
|
|
1512
|
-
},
|
|
1513
|
-
{
|
|
1514
|
-
"filter1": "option2",
|
|
1515
|
-
"filter2": "sub option 2",
|
|
1516
|
-
"Insured Rate": "90",
|
|
1517
|
-
"state": "Delaware"
|
|
1518
|
-
},
|
|
1519
|
-
{
|
|
1520
|
-
"filter1": "option2",
|
|
1521
|
-
"filter2": "sub option 2",
|
|
1522
|
-
"Insured Rate": "77",
|
|
1523
|
-
"state": "District of Columbia"
|
|
1524
|
-
},
|
|
1525
|
-
{
|
|
1526
|
-
"filter1": "option2",
|
|
1527
|
-
"filter2": "sub option 2",
|
|
1528
|
-
"Insured Rate": "83",
|
|
1529
|
-
"state": "Florida"
|
|
1530
|
-
},
|
|
1531
|
-
{
|
|
1532
|
-
"filter1": "option3",
|
|
1533
|
-
"filter2": "sub option 2",
|
|
1534
|
-
"Insured Rate": "43",
|
|
1535
|
-
"state": "Alabama"
|
|
1536
|
-
},
|
|
1537
|
-
{
|
|
1538
|
-
"filter1": "option3",
|
|
1539
|
-
"filter2": "sub option 2",
|
|
1540
|
-
"Insured Rate": "0",
|
|
1541
|
-
"state": "Alaska"
|
|
1542
|
-
},
|
|
1543
|
-
{
|
|
1544
|
-
"filter1": "option3",
|
|
1545
|
-
"filter2": "sub option 2",
|
|
1546
|
-
"Insured Rate": "72.7",
|
|
1547
|
-
"state": "Arizona"
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
"filter1": "option3",
|
|
1551
|
-
"filter2": "sub option 2",
|
|
1552
|
-
"Insured Rate": "78.7",
|
|
1553
|
-
"state": "Arkansas"
|
|
1554
|
-
},
|
|
1555
|
-
{
|
|
1556
|
-
"filter1": "option3",
|
|
1557
|
-
"filter2": "sub option 2",
|
|
1558
|
-
"Insured Rate": "37.2",
|
|
1559
|
-
"state": "California"
|
|
1560
|
-
},
|
|
1561
|
-
{
|
|
1562
|
-
"filter1": "option3",
|
|
1563
|
-
"filter2": "sub option 2",
|
|
1564
|
-
"Insured Rate": "50.6",
|
|
1565
|
-
"state": "Colorado"
|
|
1566
|
-
},
|
|
1567
|
-
{
|
|
1568
|
-
"filter1": "option3",
|
|
1569
|
-
"filter2": "sub option 2",
|
|
1570
|
-
"Insured Rate": "83.2",
|
|
1571
|
-
"state": "Connecticut"
|
|
1572
|
-
},
|
|
1573
|
-
{
|
|
1574
|
-
"filter1": "option3",
|
|
1575
|
-
"filter2": "sub option 2",
|
|
1576
|
-
"Insured Rate": "90",
|
|
1577
|
-
"state": "Delaware"
|
|
1578
|
-
},
|
|
1579
|
-
{
|
|
1580
|
-
"filter1": "option3",
|
|
1581
|
-
"filter2": "sub option 2",
|
|
1582
|
-
"Insured Rate": "77",
|
|
1583
|
-
"state": "District of Columbia"
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
"filter1": "option3",
|
|
1587
|
-
"filter2": "sub option 2",
|
|
1588
|
-
"Insured Rate": "83",
|
|
1589
|
-
"state": "Florida"
|
|
1590
|
-
}
|
|
1591
|
-
]
|
|
1592
|
-
},
|
|
1593
|
-
"data2": {
|
|
1594
|
-
"dataUrl": "../examples/temp-example-data.json",
|
|
1595
|
-
"data": [
|
|
1596
|
-
{
|
|
1597
|
-
"date": "2011-10-01",
|
|
1598
|
-
"New York": "89.4",
|
|
1599
|
-
"San Francisco": "26.7",
|
|
1600
|
-
"Austin": "34.2",
|
|
1601
|
-
"wind": "Include Winderwall",
|
|
1602
|
-
"humidity": "Include Humidiy"
|
|
1603
|
-
},
|
|
1604
|
-
{
|
|
1605
|
-
"date": "2011-10-02",
|
|
1606
|
-
"New York": "54.0",
|
|
1607
|
-
"San Francisco": "59.9",
|
|
1608
|
-
"Austin": "68.7",
|
|
1609
|
-
"wind": "Include Winderwall",
|
|
1610
|
-
"humidity": "Include Humidiy"
|
|
1611
|
-
},
|
|
1612
|
-
{
|
|
1613
|
-
"date": "2011-10-03",
|
|
1614
|
-
"New York": "51.3",
|
|
1615
|
-
"San Francisco": "53.1",
|
|
1616
|
-
"Austin": "64.4",
|
|
1617
|
-
"wind": "Include Winderwall",
|
|
1618
|
-
"humidity": "Include Humidiy"
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
"date": "2011-10-04",
|
|
1622
|
-
"New York": "34.7",
|
|
1623
|
-
"San Francisco": "56.8",
|
|
1624
|
-
"Austin": "98.0",
|
|
1625
|
-
"wind": "Include Winderwall",
|
|
1626
|
-
"humidity": "Include Humidiy"
|
|
1627
|
-
},
|
|
1628
|
-
{
|
|
1629
|
-
"date": "2011-10-01",
|
|
1630
|
-
"New York": "32.4",
|
|
1631
|
-
"San Francisco": "43.7",
|
|
1632
|
-
"Austin": "54.2",
|
|
1633
|
-
"wind": "Don't Include Wind",
|
|
1634
|
-
"humidity": "Include Humidiy"
|
|
1635
|
-
},
|
|
1636
|
-
{
|
|
1637
|
-
"date": "2011-10-02",
|
|
1638
|
-
"New York": "65.0",
|
|
1639
|
-
"San Francisco": "76.9",
|
|
1640
|
-
"Austin": "87.7",
|
|
1641
|
-
"wind": "Don't Include Wind",
|
|
1642
|
-
"humidity": "Include Humidiy"
|
|
1643
|
-
},
|
|
1644
|
-
{
|
|
1645
|
-
"date": "2011-10-03",
|
|
1646
|
-
"New York": "53.3",
|
|
1647
|
-
"San Francisco": "59.1",
|
|
1648
|
-
"Austin": "69.4",
|
|
1649
|
-
"wind": "Don't Include Wind",
|
|
1650
|
-
"humidity": "Include Humidiy"
|
|
1651
|
-
},
|
|
1652
|
-
{
|
|
1653
|
-
"date": "2011-10-04",
|
|
1654
|
-
"New York": "55.7",
|
|
1655
|
-
"San Francisco": "58.8",
|
|
1656
|
-
"Austin": "68.0",
|
|
1657
|
-
"wind": "Don't Include Wind",
|
|
1658
|
-
"humidity": "Include Humidiy"
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"date": "2011-10-01",
|
|
1662
|
-
"New York": "63.4",
|
|
1663
|
-
"San Francisco": "62.7",
|
|
1664
|
-
"Austin": "72.2",
|
|
1665
|
-
"wind": "Include Wind",
|
|
1666
|
-
"humidity": "Don't Include Humidiy"
|
|
1667
|
-
},
|
|
1668
|
-
{
|
|
1669
|
-
"date": "2011-10-02",
|
|
1670
|
-
"New York": "58.0",
|
|
1671
|
-
"San Francisco": "59.9",
|
|
1672
|
-
"Austin": "67.7",
|
|
1673
|
-
"wind": "Include Wind",
|
|
1674
|
-
"humidity": "Don't Include Humidiy"
|
|
1675
|
-
},
|
|
1676
|
-
{
|
|
1677
|
-
"date": "2011-10-03",
|
|
1678
|
-
"New York": "53.3",
|
|
1679
|
-
"San Francisco": "59.1",
|
|
1680
|
-
"Austin": "69.4",
|
|
1681
|
-
"wind": "Include Wind",
|
|
1682
|
-
"humidity": "Don't Include Humidiy"
|
|
1683
|
-
},
|
|
1684
|
-
{
|
|
1685
|
-
"date": "2011-10-04",
|
|
1686
|
-
"New York": "55.7",
|
|
1687
|
-
"San Francisco": "58.8",
|
|
1688
|
-
"Austin": "68.0",
|
|
1689
|
-
"wind": "Include Wind",
|
|
1690
|
-
"humidity": "Don't Include Humidiy"
|
|
1691
|
-
},
|
|
1692
|
-
{
|
|
1693
|
-
"date": "2011-10-01",
|
|
1694
|
-
"New York": "63.4",
|
|
1695
|
-
"San Francisco": "62.7",
|
|
1696
|
-
"Austin": "87.2",
|
|
1697
|
-
"wind": "Don't Include Wind",
|
|
1698
|
-
"humidity": "Don't Include Humidiy"
|
|
1699
|
-
},
|
|
1700
|
-
{
|
|
1701
|
-
"date": "2011-10-02",
|
|
1702
|
-
"New York": "98.0",
|
|
1703
|
-
"San Francisco": "59.9",
|
|
1704
|
-
"Austin": "67.7",
|
|
1705
|
-
"wind": "Don't Include Wind",
|
|
1706
|
-
"humidity": "Don't Include Humidiy"
|
|
1707
|
-
},
|
|
1708
|
-
{
|
|
1709
|
-
"date": "2011-10-03",
|
|
1710
|
-
"New York": "53.3",
|
|
1711
|
-
"San Francisco": "59.1",
|
|
1712
|
-
"Austin": "69.4",
|
|
1713
|
-
"wind": "Don't Include Wind",
|
|
1714
|
-
"humidity": "Don't Include Humidiy"
|
|
1715
|
-
},
|
|
1716
|
-
{
|
|
1717
|
-
"date": "2011-10-04",
|
|
1718
|
-
"New York": "55.7",
|
|
1719
|
-
"San Francisco": "54.8",
|
|
1720
|
-
"Austin": "68.0",
|
|
1721
|
-
"wind": "Don't Include Wind",
|
|
1722
|
-
"humidity": "Don't Include Humidiy"
|
|
1723
|
-
}
|
|
1724
|
-
]
|
|
1725
|
-
}
|
|
1726
|
-
},
|
|
1727
|
-
"runtime": {},
|
|
1728
|
-
"version": "4.24.4"
|
|
1729
|
-
}
|