@cdc/chart 4.25.11 → 4.26.2
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/CLAUDE.local.md +79 -0
- package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
- package/dist/cdcchart.js +51401 -50814
- package/examples/default.json +378 -0
- package/examples/feature/__data__/horizon-chart-data.json +373 -0
- package/examples/feature/annotations/index.json +3 -6
- package/examples/feature/horizon/horizon-chart.json +395 -0
- package/examples/feature/pie/planet-pie-example-config.json +48 -2
- package/examples/line-chart-states.json +1085 -0
- package/examples/private/123.json +694 -0
- package/examples/private/DEV-12100.json +1303 -0
- package/examples/private/anchor-issue.json +4094 -0
- package/examples/private/backwards-slider.json +10430 -0
- package/examples/private/cat-y.json +1235 -0
- package/examples/private/data-points.json +228 -0
- package/examples/private/georgia.csv +160 -0
- package/examples/private/height.json +3915 -0
- package/examples/private/links.json +569 -0
- package/examples/private/quadrant.txt +30 -0
- package/examples/private/test-forecast.json +5510 -0
- package/examples/private/timeline-data.json +1 -0
- package/examples/private/timeline.json +389 -0
- package/examples/private/warming-stripe-test.json +2578 -0
- package/examples/private/warming-stripes.json +4763 -0
- package/examples/radar-chart-simple.json +133 -0
- package/examples/radar-chart.json +148 -0
- package/examples/tech-adoption-with-links.json +560 -0
- package/index.html +1 -36
- package/package.json +59 -60
- package/src/CdcChartComponent.tsx +206 -89
- package/src/_stories/Chart.Anchors.stories.tsx +10 -0
- package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
- package/src/_stories/Chart.CI.stories.tsx +13 -0
- package/src/_stories/Chart.Combo.stories.tsx +17 -0
- package/src/_stories/Chart.CustomColors.stories.tsx +4 -0
- package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
- package/src/_stories/Chart.Filters.stories.tsx +4 -0
- package/src/_stories/Chart.Forecast.stories.tsx +4 -0
- package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
- package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
- package/src/_stories/Chart.Patterns.stories.tsx +4 -0
- package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
- package/src/_stories/Chart.Regions.Categorical.stories.tsx +161 -0
- package/src/_stories/Chart.Regions.DateScale.stories.tsx +216 -0
- package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +312 -0
- package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
- package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
- package/src/_stories/Chart.stories.tsx +45 -0
- package/src/_stories/Chart.tooltip.stories.tsx +7 -0
- package/src/_stories/ChartAnnotation.stories.tsx +10 -0
- package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
- package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
- package/src/_stories/ChartBar.Editor.stories.tsx +11 -6
- package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
- package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
- package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
- package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
- package/src/_stories/ChartBrush.stories.tsx +57 -0
- package/src/_stories/ChartEditor.Editor.stories.tsx +3 -5
- package/src/_stories/ChartEditor.stories.tsx +7 -0
- package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
- package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
- package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
- package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
- package/src/_stories/TechAdoptionWithLinks.stories.tsx +34 -0
- package/src/_stories/_mock/brush_continuous.json +86 -0
- package/src/_stories/_mock/brush_date_large.json +176 -0
- package/src/_stories/_mock/brush_enabled.json +326 -0
- package/src/_stories/_mock/brush_mock.json +2 -69
- package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
- package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
- package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
- package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
- package/src/components/Annotations/components/AnnotationDraggable.styles.css +11 -17
- package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
- package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
- package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
- package/src/components/Annotations/components/AnnotationList.styles.css +4 -10
- package/src/components/Annotations/components/AnnotationList.tsx +5 -4
- package/src/components/Annotations/components/findNearestDatum.ts +75 -85
- package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
- package/src/components/AreaChart/components/AreaChart.Stacked.jsx +1 -2
- package/src/components/Axis/BottomAxis.tsx +270 -0
- package/src/components/Axis/Categorical.Axis.tsx +6 -7
- package/src/components/Axis/LeftAxis.tsx +404 -0
- package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
- package/src/components/Axis/PairedBarAxis.tsx +186 -0
- package/src/components/Axis/README.md +94 -0
- package/src/components/Axis/RightAxis.tsx +108 -0
- package/src/components/Axis/axis.constants.ts +21 -0
- package/src/components/Axis/index.ts +7 -0
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +178 -24
- package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
- package/src/components/BarChart/components/BarChart.Vertical.tsx +6 -8
- package/src/components/BarChart/components/BarChart.tsx +7 -1
- package/src/components/BarChart/components/context.tsx +1 -0
- package/src/components/BarChart/helpers/useBarChart.ts +14 -2
- package/src/components/Brush/BrushSelector.tsx +1390 -0
- package/src/components/Brush/MiniChartPreview.tsx +400 -0
- package/src/components/DeviationBar.jsx +9 -7
- package/src/components/EditorPanel/EditorPanel.tsx +2734 -2595
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +60 -22
- package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
- package/src/components/EditorPanel/components/Panels/Panel.General.tsx +137 -30
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +2 -0
- package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +0 -1
- package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +30 -25
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +42 -28
- package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
- package/src/components/EditorPanel/useEditorPermissions.ts +81 -39
- package/src/components/HorizonChart/HorizonChart.tsx +131 -0
- package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
- package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
- package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
- package/src/components/HorizonChart/index.tsx +3 -0
- package/src/components/Legend/Legend.Component.tsx +52 -4
- package/src/components/Legend/Legend.tsx +4 -3
- package/src/components/Legend/LegendValueRange.tsx +77 -0
- package/src/components/Legend/helpers/createFormatLabels.tsx +164 -2
- package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
- package/src/components/Legend/helpers/index.ts +10 -6
- package/src/components/LineChart/helpers/README.md +292 -0
- package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
- package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
- package/src/components/LineChart/index.tsx +44 -8
- package/src/components/LinearChart/README.md +109 -0
- package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
- package/src/components/LinearChart/linearChart.constants.ts +84 -0
- package/src/components/LinearChart/tests/LinearChart.test.tsx +201 -0
- package/src/components/LinearChart/tests/mockConfigContext.ts +129 -0
- package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
- package/src/components/LinearChart.tsx +338 -1082
- package/src/components/PairedBarChart.jsx +20 -3
- package/src/components/PieChart/PieChart.tsx +1 -1
- package/src/components/RadarChart/RadarAxis.tsx +78 -0
- package/src/components/RadarChart/RadarChart.tsx +298 -0
- package/src/components/RadarChart/RadarGrid.tsx +64 -0
- package/src/components/RadarChart/RadarPolygon.tsx +91 -0
- package/src/components/RadarChart/helpers.ts +83 -0
- package/src/components/RadarChart/index.tsx +3 -0
- package/src/components/Regions/components/Regions.tsx +365 -122
- package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
- package/src/components/SmallMultiples/SmallMultipleTile.tsx +5 -1
- package/src/components/WarmingStripes/WarmingStripes.tsx +230 -0
- package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
- package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
- package/src/components/WarmingStripes/index.tsx +3 -0
- package/src/data/initial-state.js +17 -2
- package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
- package/src/helpers/getExcludedData.ts +4 -0
- package/src/helpers/getMinMax.ts +12 -7
- package/src/helpers/handleChartAriaLabels.ts +19 -19
- package/src/helpers/handleLineType.ts +22 -18
- package/src/helpers/sizeHelpers.ts +0 -20
- package/src/helpers/smallMultiplesHelpers.ts +1 -1
- package/src/hooks/useChartHoverAnalytics.tsx +10 -9
- package/src/hooks/useProgrammaticTooltip.ts +23 -2
- package/src/hooks/useScales.ts +18 -1
- package/src/hooks/useTooltip.tsx +34 -10
- package/src/scss/DataTable.scss +0 -4
- package/src/scss/main.scss +22 -3
- package/src/selectors/README.md +68 -0
- package/src/store/chart.reducer.ts +2 -0
- package/src/test/CdcChart.test.jsx +1 -1
- package/src/types/ChartConfig.ts +21 -0
- package/src/types/ChartContext.ts +1 -0
- package/src/types/Horizon.ts +64 -0
- package/src/types/Label.ts +1 -0
- package/src/utils/analyticsTracking.ts +19 -0
- package/LICENSE +0 -201
- package/src/components/Annotations/components/helpers/index.tsx +0 -46
- package/src/components/Brush/BrushChart.tsx +0 -128
- package/src/components/Brush/BrushController.tsx +0 -71
- package/src/components/Brush/types.tsx +0 -8
- package/src/components/BrushChart.tsx +0 -223
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "chart",
|
|
3
|
+
"title": "Widget Production vs Quality Metrics - Demo Data",
|
|
4
|
+
"showTitle": true,
|
|
5
|
+
"theme": "theme-blue",
|
|
6
|
+
"visualizationType": "Line",
|
|
7
|
+
"orientation": "vertical",
|
|
8
|
+
"xAxis": {
|
|
9
|
+
"type": "date-time",
|
|
10
|
+
"dataKey": "Date",
|
|
11
|
+
"dateParseFormat": "%m/%d/%Y",
|
|
12
|
+
"dateDisplayFormat": "%m/%y",
|
|
13
|
+
"hideAxis": false,
|
|
14
|
+
"hideLabel": false,
|
|
15
|
+
"hideTicks": false,
|
|
16
|
+
"size": 75,
|
|
17
|
+
"labelColor": "#333",
|
|
18
|
+
"tickLabelColor": "#333",
|
|
19
|
+
"tickColor": "#333",
|
|
20
|
+
"brushActive": true,
|
|
21
|
+
"brushDefaultRecentDateCount": "4"
|
|
22
|
+
},
|
|
23
|
+
"yAxis": {
|
|
24
|
+
"hideAxis": false,
|
|
25
|
+
"hideLabel": false,
|
|
26
|
+
"hideTicks": false,
|
|
27
|
+
"size": 50,
|
|
28
|
+
"gridLines": false,
|
|
29
|
+
"labelColor": "#333",
|
|
30
|
+
"tickLabelColor": "#333",
|
|
31
|
+
"tickColor": "#333"
|
|
32
|
+
},
|
|
33
|
+
"legend": {
|
|
34
|
+
"hide": false,
|
|
35
|
+
"behavior": "isolate",
|
|
36
|
+
"position": "right"
|
|
37
|
+
},
|
|
38
|
+
"table": {
|
|
39
|
+
"label": "Data Table",
|
|
40
|
+
"show": true
|
|
41
|
+
},
|
|
42
|
+
"series": [
|
|
43
|
+
{
|
|
44
|
+
"dataKey": "Production",
|
|
45
|
+
"type": "Line",
|
|
46
|
+
"lineType": "curveMonotoneX",
|
|
47
|
+
"weight": 3,
|
|
48
|
+
"axis": "Left",
|
|
49
|
+
"name": "Widget Production (1000s)",
|
|
50
|
+
"tooltip": true
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"dataKey": "Quality",
|
|
54
|
+
"type": "dashed-md",
|
|
55
|
+
"lineType": "curveLinear",
|
|
56
|
+
"weight": 2,
|
|
57
|
+
"axis": "Left",
|
|
58
|
+
"name": "Quality Score",
|
|
59
|
+
"tooltip": true
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"dataKey": "Efficiency",
|
|
63
|
+
"type": "dashed-sm",
|
|
64
|
+
"lineType": "curveStep",
|
|
65
|
+
"weight": 1,
|
|
66
|
+
"axis": "Left",
|
|
67
|
+
"name": "Efficiency Rating",
|
|
68
|
+
"tooltip": true
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"data": [
|
|
72
|
+
{ "Date": "1/6/2020", "Production": "85", "Quality": "75", "Efficiency": "83" },
|
|
73
|
+
{ "Date": "1/13/2020", "Production": "85", "Quality": "75", "Efficiency": "83" },
|
|
74
|
+
{ "Date": "1/20/2020", "Production": "86", "Quality": "76", "Efficiency": "84" },
|
|
75
|
+
{ "Date": "1/27/2020", "Production": "86", "Quality": "76", "Efficiency": "84" },
|
|
76
|
+
{ "Date": "2/3/2020", "Production": "86", "Quality": "76", "Efficiency": "84" },
|
|
77
|
+
{ "Date": "2/10/2020", "Production": "87", "Quality": "77", "Efficiency": "85" },
|
|
78
|
+
{ "Date": "2/17/2020", "Production": "87", "Quality": "77", "Efficiency": "85" },
|
|
79
|
+
{ "Date": "2/24/2020", "Production": "87", "Quality": "77", "Efficiency": "85" },
|
|
80
|
+
{ "Date": "3/2/2020", "Production": "88", "Quality": "78", "Efficiency": "86" },
|
|
81
|
+
{ "Date": "3/9/2020", "Production": "88", "Quality": "78", "Efficiency": "86" },
|
|
82
|
+
{ "Date": "3/16/2020", "Production": "88", "Quality": "78", "Efficiency": "86" },
|
|
83
|
+
{ "Date": "3/23/2020", "Production": "89", "Quality": "79", "Efficiency": "87" },
|
|
84
|
+
{ "Date": "3/30/2020", "Production": "89", "Quality": "79", "Efficiency": "87" },
|
|
85
|
+
{ "Date": "4/6/2020", "Production": "89", "Quality": "79", "Efficiency": "87" },
|
|
86
|
+
{ "Date": "4/13/2020", "Production": "90", "Quality": "80", "Efficiency": "88" },
|
|
87
|
+
{ "Date": "4/20/2020", "Production": "90", "Quality": "80", "Efficiency": "88" },
|
|
88
|
+
{ "Date": "4/27/2020", "Production": "90", "Quality": "80", "Efficiency": "88" },
|
|
89
|
+
{ "Date": "5/4/2020", "Production": "91", "Quality": "81", "Efficiency": "89" },
|
|
90
|
+
{ "Date": "5/11/2020", "Production": "91", "Quality": "81", "Efficiency": "89" },
|
|
91
|
+
{ "Date": "5/18/2020", "Production": "92", "Quality": "82", "Efficiency": "90" },
|
|
92
|
+
{ "Date": "5/25/2020", "Production": "92", "Quality": "82", "Efficiency": "90" },
|
|
93
|
+
{ "Date": "6/1/2020", "Production": "97", "Quality": "87", "Efficiency": "95" },
|
|
94
|
+
{ "Date": "6/8/2020", "Production": "98", "Quality": "88", "Efficiency": "96" },
|
|
95
|
+
{ "Date": "6/15/2020", "Production": "98", "Quality": "88", "Efficiency": "96" },
|
|
96
|
+
{ "Date": "6/22/2020", "Production": "99", "Quality": "89", "Efficiency": "97" },
|
|
97
|
+
{ "Date": "6/29/2020", "Production": "99", "Quality": "89", "Efficiency": "97" },
|
|
98
|
+
{ "Date": "7/6/2020", "Production": "105", "Quality": "95", "Efficiency": "103" },
|
|
99
|
+
{ "Date": "7/13/2020", "Production": "105", "Quality": "95", "Efficiency": "103" },
|
|
100
|
+
{ "Date": "7/20/2020", "Production": "106", "Quality": "96", "Efficiency": "104" },
|
|
101
|
+
{ "Date": "7/27/2020", "Production": "106", "Quality": "96", "Efficiency": "104" },
|
|
102
|
+
{ "Date": "8/3/2020", "Production": "112", "Quality": "102", "Efficiency": "110" },
|
|
103
|
+
{ "Date": "8/10/2020", "Production": "112", "Quality": "102", "Efficiency": "110" },
|
|
104
|
+
{ "Date": "8/17/2020", "Production": "113", "Quality": "103", "Efficiency": "111" },
|
|
105
|
+
{ "Date": "8/24/2020", "Production": "113", "Quality": "103", "Efficiency": "111" },
|
|
106
|
+
{ "Date": "8/31/2020", "Production": "114", "Quality": "104", "Efficiency": "112" },
|
|
107
|
+
{ "Date": "9/7/2020", "Production": "109", "Quality": "99", "Efficiency": "107" },
|
|
108
|
+
{ "Date": "9/14/2020", "Production": "110", "Quality": "100", "Efficiency": "108" },
|
|
109
|
+
{ "Date": "9/21/2020", "Production": "110", "Quality": "100", "Efficiency": "108" },
|
|
110
|
+
{ "Date": "9/28/2020", "Production": "111", "Quality": "101", "Efficiency": "109" },
|
|
111
|
+
{ "Date": "10/5/2020", "Production": "106", "Quality": "96", "Efficiency": "104" },
|
|
112
|
+
{ "Date": "10/12/2020", "Production": "107", "Quality": "97", "Efficiency": "105" },
|
|
113
|
+
{ "Date": "10/19/2020", "Production": "107", "Quality": "97", "Efficiency": "105" },
|
|
114
|
+
{ "Date": "10/26/2020", "Production": "108", "Quality": "98", "Efficiency": "106" },
|
|
115
|
+
{ "Date": "11/2/2020", "Production": "103", "Quality": "93", "Efficiency": "101" },
|
|
116
|
+
{ "Date": "11/9/2020", "Production": "104", "Quality": "94", "Efficiency": "102" },
|
|
117
|
+
{ "Date": "11/16/2020", "Production": "104", "Quality": "94", "Efficiency": "102" },
|
|
118
|
+
{ "Date": "11/23/2020", "Production": "105", "Quality": "95", "Efficiency": "103" },
|
|
119
|
+
{ "Date": "11/30/2020", "Production": "105", "Quality": "95", "Efficiency": "103" },
|
|
120
|
+
{ "Date": "12/7/2020", "Production": "101", "Quality": "91", "Efficiency": "99" },
|
|
121
|
+
{ "Date": "12/14/2020", "Production": "101", "Quality": "91", "Efficiency": "99" },
|
|
122
|
+
{ "Date": "12/21/2020", "Production": "102", "Quality": "92", "Efficiency": "100" },
|
|
123
|
+
{ "Date": "12/28/2020", "Production": "102", "Quality": "92", "Efficiency": "100" },
|
|
124
|
+
{ "Date": "1/4/2021", "Production": "98", "Quality": "88", "Efficiency": "96" },
|
|
125
|
+
{ "Date": "1/11/2021", "Production": "98", "Quality": "88", "Efficiency": "96" },
|
|
126
|
+
{ "Date": "1/18/2021", "Production": "99", "Quality": "89", "Efficiency": "97" },
|
|
127
|
+
{ "Date": "1/25/2021", "Production": "99", "Quality": "89", "Efficiency": "97" },
|
|
128
|
+
{ "Date": "2/1/2021", "Production": "100", "Quality": "90", "Efficiency": "98" },
|
|
129
|
+
{ "Date": "2/8/2021", "Production": "100", "Quality": "90", "Efficiency": "98" },
|
|
130
|
+
{ "Date": "2/15/2021", "Production": "100", "Quality": "90", "Efficiency": "98" },
|
|
131
|
+
{ "Date": "2/22/2021", "Production": "101", "Quality": "91", "Efficiency": "99" },
|
|
132
|
+
{ "Date": "3/1/2021", "Production": "101", "Quality": "91", "Efficiency": "99" },
|
|
133
|
+
{ "Date": "3/8/2021", "Production": "102", "Quality": "92", "Efficiency": "100" },
|
|
134
|
+
{ "Date": "3/15/2021", "Production": "102", "Quality": "92", "Efficiency": "100" },
|
|
135
|
+
{ "Date": "3/22/2021", "Production": "102", "Quality": "92", "Efficiency": "100" },
|
|
136
|
+
{ "Date": "3/29/2021", "Production": "103", "Quality": "93", "Efficiency": "101" },
|
|
137
|
+
{ "Date": "4/5/2021", "Production": "103", "Quality": "93", "Efficiency": "101" },
|
|
138
|
+
{ "Date": "4/12/2021", "Production": "104", "Quality": "94", "Efficiency": "102" },
|
|
139
|
+
{ "Date": "4/19/2021", "Production": "104", "Quality": "94", "Efficiency": "102" },
|
|
140
|
+
{ "Date": "4/26/2021", "Production": "104", "Quality": "94", "Efficiency": "102" },
|
|
141
|
+
{ "Date": "5/3/2021", "Production": "105", "Quality": "95", "Efficiency": "103" },
|
|
142
|
+
{ "Date": "5/10/2021", "Production": "105", "Quality": "95", "Efficiency": "103" },
|
|
143
|
+
{ "Date": "5/17/2021", "Production": "106", "Quality": "96", "Efficiency": "104" },
|
|
144
|
+
{ "Date": "5/24/2021", "Production": "106", "Quality": "96", "Efficiency": "104" },
|
|
145
|
+
{ "Date": "5/31/2021", "Production": "106", "Quality": "96", "Efficiency": "104" },
|
|
146
|
+
{ "Date": "6/7/2021", "Production": "112", "Quality": "102", "Efficiency": "110" },
|
|
147
|
+
{ "Date": "6/14/2021", "Production": "112", "Quality": "102", "Efficiency": "110" },
|
|
148
|
+
{ "Date": "6/21/2021", "Production": "113", "Quality": "103", "Efficiency": "111" },
|
|
149
|
+
{ "Date": "6/28/2021", "Production": "113", "Quality": "103", "Efficiency": "111" },
|
|
150
|
+
{ "Date": "7/5/2021", "Production": "180", "Quality": "165", "Efficiency": "175" },
|
|
151
|
+
{ "Date": "7/12/2021", "Production": "185", "Quality": "170", "Efficiency": "180" },
|
|
152
|
+
{ "Date": "7/19/2021", "Production": "120", "Quality": "110", "Efficiency": "118" },
|
|
153
|
+
{ "Date": "7/26/2021", "Production": "120", "Quality": "110", "Efficiency": "118" },
|
|
154
|
+
{ "Date": "8/2/2021", "Production": "126", "Quality": "116", "Efficiency": "124" },
|
|
155
|
+
{ "Date": "8/9/2021", "Production": "126", "Quality": "116", "Efficiency": "124" },
|
|
156
|
+
{ "Date": "8/16/2021", "Production": "127", "Quality": "117", "Efficiency": "125" },
|
|
157
|
+
{ "Date": "8/23/2021", "Production": "127", "Quality": "117", "Efficiency": "125" },
|
|
158
|
+
{ "Date": "8/30/2021", "Production": "128", "Quality": "118", "Efficiency": "126" },
|
|
159
|
+
{ "Date": "9/6/2021", "Production": "123", "Quality": "113", "Efficiency": "121" },
|
|
160
|
+
{ "Date": "9/13/2021", "Production": "124", "Quality": "114", "Efficiency": "122" },
|
|
161
|
+
{ "Date": "9/20/2021", "Production": "124", "Quality": "114", "Efficiency": "122" },
|
|
162
|
+
{ "Date": "9/27/2021", "Production": "125", "Quality": "115", "Efficiency": "123" },
|
|
163
|
+
{ "Date": "10/4/2021", "Production": "120", "Quality": "110", "Efficiency": "118" },
|
|
164
|
+
{ "Date": "10/11/2021", "Production": "121", "Quality": "111", "Efficiency": "119" },
|
|
165
|
+
{ "Date": "10/18/2021", "Production": "121", "Quality": "111", "Efficiency": "119" },
|
|
166
|
+
{ "Date": "10/25/2021", "Production": "122", "Quality": "112", "Efficiency": "120" },
|
|
167
|
+
{ "Date": "11/1/2021", "Production": "117", "Quality": "107", "Efficiency": "115" },
|
|
168
|
+
{ "Date": "11/8/2021", "Production": "118", "Quality": "108", "Efficiency": "116" },
|
|
169
|
+
{ "Date": "11/15/2021", "Production": "118", "Quality": "108", "Efficiency": "116" },
|
|
170
|
+
{ "Date": "11/22/2021", "Production": "119", "Quality": "109", "Efficiency": "117" },
|
|
171
|
+
{ "Date": "11/29/2021", "Production": "119", "Quality": "109", "Efficiency": "117" },
|
|
172
|
+
{ "Date": "12/6/2021", "Production": "115", "Quality": "105", "Efficiency": "113" },
|
|
173
|
+
{ "Date": "12/13/2021", "Production": "115", "Quality": "105", "Efficiency": "113" },
|
|
174
|
+
{ "Date": "12/20/2021", "Production": "116", "Quality": "106", "Efficiency": "114" },
|
|
175
|
+
{ "Date": "12/27/2021", "Production": "116", "Quality": "106", "Efficiency": "114" },
|
|
176
|
+
{ "Date": "1/3/2022", "Production": "112", "Quality": "102", "Efficiency": "110" },
|
|
177
|
+
{ "Date": "1/10/2022", "Production": "112", "Quality": "102", "Efficiency": "110" },
|
|
178
|
+
{ "Date": "1/17/2022", "Production": "113", "Quality": "103", "Efficiency": "111" },
|
|
179
|
+
{ "Date": "1/24/2022", "Production": "113", "Quality": "103", "Efficiency": "111" },
|
|
180
|
+
{ "Date": "1/31/2022", "Production": "114", "Quality": "104", "Efficiency": "112" },
|
|
181
|
+
{ "Date": "2/7/2022", "Production": "114", "Quality": "104", "Efficiency": "112" },
|
|
182
|
+
{ "Date": "2/14/2022", "Production": "114", "Quality": "104", "Efficiency": "112" },
|
|
183
|
+
{ "Date": "2/21/2022", "Production": "115", "Quality": "105", "Efficiency": "113" },
|
|
184
|
+
{ "Date": "2/28/2022", "Production": "115", "Quality": "105", "Efficiency": "113" },
|
|
185
|
+
{ "Date": "3/7/2022", "Production": "116", "Quality": "106", "Efficiency": "114" },
|
|
186
|
+
{ "Date": "3/14/2022", "Production": "116", "Quality": "106", "Efficiency": "114" },
|
|
187
|
+
{ "Date": "3/21/2022", "Production": "116", "Quality": "106", "Efficiency": "114" },
|
|
188
|
+
{ "Date": "3/28/2022", "Production": "117", "Quality": "107", "Efficiency": "115" },
|
|
189
|
+
{ "Date": "4/4/2022", "Production": "117", "Quality": "107", "Efficiency": "115" },
|
|
190
|
+
{ "Date": "4/11/2022", "Production": "118", "Quality": "108", "Efficiency": "116" },
|
|
191
|
+
{ "Date": "4/18/2022", "Production": "118", "Quality": "108", "Efficiency": "116" },
|
|
192
|
+
{ "Date": "4/25/2022", "Production": "118", "Quality": "108", "Efficiency": "116" },
|
|
193
|
+
{ "Date": "5/2/2022", "Production": "119", "Quality": "109", "Efficiency": "117" },
|
|
194
|
+
{ "Date": "5/9/2022", "Production": "119", "Quality": "109", "Efficiency": "117" },
|
|
195
|
+
{ "Date": "5/16/2022", "Production": "120", "Quality": "110", "Efficiency": "118" },
|
|
196
|
+
{ "Date": "5/23/2022", "Production": "120", "Quality": "110", "Efficiency": "118" },
|
|
197
|
+
{ "Date": "5/30/2022", "Production": "120", "Quality": "110", "Efficiency": "118" },
|
|
198
|
+
{ "Date": "6/6/2022", "Production": "126", "Quality": "116", "Efficiency": "124" },
|
|
199
|
+
{ "Date": "6/13/2022", "Production": "126", "Quality": "116", "Efficiency": "124" },
|
|
200
|
+
{ "Date": "6/20/2022", "Production": "127", "Quality": "117", "Efficiency": "125" },
|
|
201
|
+
{ "Date": "6/27/2022", "Production": "127", "Quality": "117", "Efficiency": "125" },
|
|
202
|
+
{ "Date": "7/4/2022", "Production": "133", "Quality": "123", "Efficiency": "131" },
|
|
203
|
+
{ "Date": "7/11/2022", "Production": "133", "Quality": "123", "Efficiency": "131" },
|
|
204
|
+
{ "Date": "7/18/2022", "Production": "134", "Quality": "124", "Efficiency": "132" },
|
|
205
|
+
{ "Date": "7/25/2022", "Production": "134", "Quality": "124", "Efficiency": "132" },
|
|
206
|
+
{ "Date": "8/1/2022", "Production": "140", "Quality": "130", "Efficiency": "138" },
|
|
207
|
+
{ "Date": "8/8/2022", "Production": "140", "Quality": "130", "Efficiency": "138" },
|
|
208
|
+
{ "Date": "8/15/2022", "Production": "141", "Quality": "131", "Efficiency": "139" },
|
|
209
|
+
{ "Date": "8/22/2022", "Production": "141", "Quality": "131", "Efficiency": "139" },
|
|
210
|
+
{ "Date": "8/29/2022", "Production": "142", "Quality": "132", "Efficiency": "140" },
|
|
211
|
+
{ "Date": "9/5/2022", "Production": "137", "Quality": "127", "Efficiency": "135" },
|
|
212
|
+
{ "Date": "9/12/2022", "Production": "138", "Quality": "128", "Efficiency": "136" },
|
|
213
|
+
{ "Date": "9/19/2022", "Production": "138", "Quality": "128", "Efficiency": "136" },
|
|
214
|
+
{ "Date": "9/26/2022", "Production": "139", "Quality": "129", "Efficiency": "137" },
|
|
215
|
+
{ "Date": "10/3/2022", "Production": "134", "Quality": "124", "Efficiency": "132" },
|
|
216
|
+
{ "Date": "10/10/2022", "Production": "135", "Quality": "125", "Efficiency": "133" },
|
|
217
|
+
{ "Date": "10/17/2022", "Production": "135", "Quality": "125", "Efficiency": "133" },
|
|
218
|
+
{ "Date": "10/24/2022", "Production": "136", "Quality": "126", "Efficiency": "134" },
|
|
219
|
+
{ "Date": "10/31/2022", "Production": "136", "Quality": "126", "Efficiency": "134" },
|
|
220
|
+
{ "Date": "11/7/2022", "Production": "131", "Quality": "121", "Efficiency": "129" },
|
|
221
|
+
{ "Date": "11/14/2022", "Production": "132", "Quality": "122", "Efficiency": "130" },
|
|
222
|
+
{ "Date": "11/21/2022", "Production": "132", "Quality": "122", "Efficiency": "130" },
|
|
223
|
+
{ "Date": "11/28/2022", "Production": "133", "Quality": "123", "Efficiency": "131" },
|
|
224
|
+
{ "Date": "12/5/2022", "Production": "129", "Quality": "119", "Efficiency": "127" },
|
|
225
|
+
{ "Date": "12/12/2022", "Production": "129", "Quality": "119", "Efficiency": "127" },
|
|
226
|
+
{ "Date": "12/19/2022", "Production": "130", "Quality": "120", "Efficiency": "128" },
|
|
227
|
+
{ "Date": "12/26/2022", "Production": "130", "Quality": "120", "Efficiency": "128" },
|
|
228
|
+
{ "Date": "1/2/2023", "Production": "126", "Quality": "116", "Efficiency": "124" },
|
|
229
|
+
{ "Date": "1/9/2023", "Production": "126", "Quality": "116", "Efficiency": "124" },
|
|
230
|
+
{ "Date": "1/16/2023", "Production": "127", "Quality": "117", "Efficiency": "125" },
|
|
231
|
+
{ "Date": "1/23/2023", "Production": "127", "Quality": "117", "Efficiency": "125" },
|
|
232
|
+
{ "Date": "1/30/2023", "Production": "128", "Quality": "118", "Efficiency": "126" },
|
|
233
|
+
{ "Date": "2/6/2023", "Production": "128", "Quality": "118", "Efficiency": "126" },
|
|
234
|
+
{ "Date": "2/13/2023", "Production": "128", "Quality": "118", "Efficiency": "126" },
|
|
235
|
+
{ "Date": "2/20/2023", "Production": "129", "Quality": "119", "Efficiency": "127" },
|
|
236
|
+
{ "Date": "2/27/2023", "Production": "129", "Quality": "119", "Efficiency": "127" },
|
|
237
|
+
{ "Date": "3/6/2023", "Production": "130", "Quality": "120", "Efficiency": "128" },
|
|
238
|
+
{ "Date": "3/13/2023", "Production": "130", "Quality": "120", "Efficiency": "128" },
|
|
239
|
+
{ "Date": "3/20/2023", "Production": "130", "Quality": "120", "Efficiency": "128" },
|
|
240
|
+
{ "Date": "3/27/2023", "Production": "131", "Quality": "121", "Efficiency": "129" },
|
|
241
|
+
{ "Date": "4/3/2023", "Production": "131", "Quality": "121", "Efficiency": "129" },
|
|
242
|
+
{ "Date": "4/10/2023", "Production": "132", "Quality": "122", "Efficiency": "130" },
|
|
243
|
+
{ "Date": "4/17/2023", "Production": "132", "Quality": "122", "Efficiency": "130" },
|
|
244
|
+
{ "Date": "4/24/2023", "Production": "132", "Quality": "122", "Efficiency": "130" },
|
|
245
|
+
{ "Date": "5/1/2023", "Production": "133", "Quality": "123", "Efficiency": "131" },
|
|
246
|
+
{ "Date": "5/8/2023", "Production": "133", "Quality": "123", "Efficiency": "131" },
|
|
247
|
+
{ "Date": "5/15/2023", "Production": "134", "Quality": "124", "Efficiency": "132" },
|
|
248
|
+
{ "Date": "5/22/2023", "Production": "134", "Quality": "124", "Efficiency": "132" },
|
|
249
|
+
{ "Date": "5/29/2023", "Production": "134", "Quality": "124", "Efficiency": "132" },
|
|
250
|
+
{ "Date": "6/5/2023", "Production": "140", "Quality": "130", "Efficiency": "138" },
|
|
251
|
+
{ "Date": "6/12/2023", "Production": "140", "Quality": "130", "Efficiency": "138" },
|
|
252
|
+
{ "Date": "6/19/2023", "Production": "141", "Quality": "131", "Efficiency": "139" },
|
|
253
|
+
{ "Date": "6/26/2023", "Production": "141", "Quality": "131", "Efficiency": "139" },
|
|
254
|
+
{ "Date": "7/3/2023", "Production": "147", "Quality": "137", "Efficiency": "145" },
|
|
255
|
+
{ "Date": "7/10/2023", "Production": "147", "Quality": "137", "Efficiency": "145" },
|
|
256
|
+
{ "Date": "7/17/2023", "Production": "148", "Quality": "138", "Efficiency": "146" },
|
|
257
|
+
{ "Date": "7/24/2023", "Production": "148", "Quality": "138", "Efficiency": "146" },
|
|
258
|
+
{ "Date": "7/31/2023", "Production": "149", "Quality": "139", "Efficiency": "147" },
|
|
259
|
+
{ "Date": "8/7/2023", "Production": "154", "Quality": "144", "Efficiency": "152" },
|
|
260
|
+
{ "Date": "8/14/2023", "Production": "155", "Quality": "145", "Efficiency": "153" },
|
|
261
|
+
{ "Date": "8/21/2023", "Production": "155", "Quality": "145", "Efficiency": "153" },
|
|
262
|
+
{ "Date": "8/28/2023", "Production": "156", "Quality": "146", "Efficiency": "154" },
|
|
263
|
+
{ "Date": "9/4/2023", "Production": "151", "Quality": "141", "Efficiency": "149" },
|
|
264
|
+
{ "Date": "9/11/2023", "Production": "152", "Quality": "142", "Efficiency": "150" },
|
|
265
|
+
{ "Date": "9/18/2023", "Production": "152", "Quality": "142", "Efficiency": "150" },
|
|
266
|
+
{ "Date": "9/25/2023", "Production": "153", "Quality": "143", "Efficiency": "151" },
|
|
267
|
+
{ "Date": "10/2/2023", "Production": "148", "Quality": "138", "Efficiency": "146" },
|
|
268
|
+
{ "Date": "10/9/2023", "Production": "149", "Quality": "139", "Efficiency": "147" },
|
|
269
|
+
{ "Date": "10/16/2023", "Production": "149", "Quality": "139", "Efficiency": "147" },
|
|
270
|
+
{ "Date": "10/23/2023", "Production": "150", "Quality": "140", "Efficiency": "148" },
|
|
271
|
+
{ "Date": "10/30/2023", "Production": "150", "Quality": "140", "Efficiency": "148" },
|
|
272
|
+
{ "Date": "11/6/2023", "Production": "145", "Quality": "135", "Efficiency": "143" },
|
|
273
|
+
{ "Date": "11/13/2023", "Production": "146", "Quality": "136", "Efficiency": "144" },
|
|
274
|
+
{ "Date": "11/20/2023", "Production": "146", "Quality": "136", "Efficiency": "144" },
|
|
275
|
+
{ "Date": "11/27/2023", "Production": "147", "Quality": "137", "Efficiency": "145" },
|
|
276
|
+
{ "Date": "12/4/2023", "Production": "143", "Quality": "133", "Efficiency": "141" },
|
|
277
|
+
{ "Date": "12/11/2023", "Production": "143", "Quality": "133", "Efficiency": "141" },
|
|
278
|
+
{ "Date": "12/18/2023", "Production": "144", "Quality": "134", "Efficiency": "142" },
|
|
279
|
+
{ "Date": "12/25/2023", "Production": "144", "Quality": "134", "Efficiency": "142" },
|
|
280
|
+
{ "Date": "1/1/2024", "Production": "140", "Quality": "130", "Efficiency": "138" },
|
|
281
|
+
{ "Date": "1/8/2024", "Production": "140", "Quality": "130", "Efficiency": "138" },
|
|
282
|
+
{ "Date": "1/15/2024", "Production": "141", "Quality": "131", "Efficiency": "139" },
|
|
283
|
+
{ "Date": "1/22/2024", "Production": "141", "Quality": "131", "Efficiency": "139" },
|
|
284
|
+
{ "Date": "1/29/2024", "Production": "142", "Quality": "132", "Efficiency": "140" },
|
|
285
|
+
{ "Date": "2/5/2024", "Production": "142", "Quality": "132", "Efficiency": "140" },
|
|
286
|
+
{ "Date": "2/12/2024", "Production": "142", "Quality": "132", "Efficiency": "140" },
|
|
287
|
+
{ "Date": "2/19/2024", "Production": "143", "Quality": "133", "Efficiency": "141" },
|
|
288
|
+
{ "Date": "2/26/2024", "Production": "143", "Quality": "133", "Efficiency": "141" },
|
|
289
|
+
{ "Date": "3/4/2024", "Production": "144", "Quality": "134", "Efficiency": "142" },
|
|
290
|
+
{ "Date": "3/11/2024", "Production": "144", "Quality": "134", "Efficiency": "142" },
|
|
291
|
+
{ "Date": "3/18/2024", "Production": "144", "Quality": "134", "Efficiency": "142" },
|
|
292
|
+
{ "Date": "3/25/2024", "Production": "145", "Quality": "135", "Efficiency": "143" },
|
|
293
|
+
{ "Date": "4/1/2024", "Production": "145", "Quality": "135", "Efficiency": "143" },
|
|
294
|
+
{ "Date": "4/8/2024", "Production": "146", "Quality": "136", "Efficiency": "144" },
|
|
295
|
+
{ "Date": "4/15/2024", "Production": "146", "Quality": "136", "Efficiency": "144" },
|
|
296
|
+
{ "Date": "4/22/2024", "Production": "146", "Quality": "136", "Efficiency": "144" },
|
|
297
|
+
{ "Date": "4/29/2024", "Production": "147", "Quality": "137", "Efficiency": "145" },
|
|
298
|
+
{ "Date": "5/6/2024", "Production": "147", "Quality": "137", "Efficiency": "145" },
|
|
299
|
+
{ "Date": "5/13/2024", "Production": "148", "Quality": "138", "Efficiency": "146" },
|
|
300
|
+
{ "Date": "5/20/2024", "Production": "148", "Quality": "138", "Efficiency": "146" },
|
|
301
|
+
{ "Date": "5/27/2024", "Production": "148", "Quality": "138", "Efficiency": "146" },
|
|
302
|
+
{ "Date": "6/3/2024", "Production": "154", "Quality": "144", "Efficiency": "152" },
|
|
303
|
+
{ "Date": "6/10/2024", "Production": "154", "Quality": "144", "Efficiency": "152" },
|
|
304
|
+
{ "Date": "6/17/2024", "Production": "155", "Quality": "145", "Efficiency": "153" },
|
|
305
|
+
{ "Date": "6/24/2024", "Production": "155", "Quality": "145", "Efficiency": "153" },
|
|
306
|
+
{ "Date": "7/1/2024", "Production": "161", "Quality": "151", "Efficiency": "159" },
|
|
307
|
+
{ "Date": "7/8/2024", "Production": "161", "Quality": "151", "Efficiency": "159" },
|
|
308
|
+
{ "Date": "7/15/2024", "Production": "162", "Quality": "152", "Efficiency": "160" },
|
|
309
|
+
{ "Date": "7/22/2024", "Production": "162", "Quality": "152", "Efficiency": "160" },
|
|
310
|
+
{ "Date": "7/29/2024", "Production": "163", "Quality": "153", "Efficiency": "161" },
|
|
311
|
+
{ "Date": "8/5/2024", "Production": "168", "Quality": "158", "Efficiency": "166" },
|
|
312
|
+
{ "Date": "8/12/2024", "Production": "169", "Quality": "159", "Efficiency": "167" },
|
|
313
|
+
{ "Date": "8/19/2024", "Production": "169", "Quality": "159", "Efficiency": "167" },
|
|
314
|
+
{ "Date": "8/26/2024", "Production": "170", "Quality": "160", "Efficiency": "168" },
|
|
315
|
+
{ "Date": "9/2/2024", "Production": "165", "Quality": "155", "Efficiency": "163" },
|
|
316
|
+
{ "Date": "9/9/2024", "Production": "166", "Quality": "156", "Efficiency": "164" },
|
|
317
|
+
{ "Date": "9/16/2024", "Production": "166", "Quality": "156", "Efficiency": "164" },
|
|
318
|
+
{ "Date": "9/23/2024", "Production": "167", "Quality": "157", "Efficiency": "165" },
|
|
319
|
+
{ "Date": "9/30/2024", "Production": "167", "Quality": "157", "Efficiency": "165" },
|
|
320
|
+
{ "Date": "10/7/2024", "Production": "162", "Quality": "152", "Efficiency": "160" },
|
|
321
|
+
{ "Date": "10/14/2024", "Production": "163", "Quality": "153", "Efficiency": "161" },
|
|
322
|
+
{ "Date": "10/21/2024", "Production": "163", "Quality": "153", "Efficiency": "161" },
|
|
323
|
+
{ "Date": "10/28/2024", "Production": "164", "Quality": "154", "Efficiency": "162" },
|
|
324
|
+
{ "Date": "11/4/2024", "Production": "159", "Quality": "149", "Efficiency": "157" }
|
|
325
|
+
]
|
|
326
|
+
}
|
|
@@ -150,68 +150,6 @@
|
|
|
150
150
|
"lineMode": false,
|
|
151
151
|
"verticalSorted": false
|
|
152
152
|
},
|
|
153
|
-
"brush": {
|
|
154
|
-
"height": 25,
|
|
155
|
-
"data": [
|
|
156
|
-
{
|
|
157
|
-
"Date": "1/15/2016",
|
|
158
|
-
"Data 1": "900",
|
|
159
|
-
"Data 2": "135",
|
|
160
|
-
"Data 3": "300",
|
|
161
|
-
"Data 4": "95",
|
|
162
|
-
"Data 5": "120",
|
|
163
|
-
"Data 6": "310"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"Date": "2/15/2016",
|
|
167
|
-
"Data 1": "4000",
|
|
168
|
-
"Data 2": "90",
|
|
169
|
-
"Data 3": "240",
|
|
170
|
-
"Data 4": "60",
|
|
171
|
-
"Data 5": "160",
|
|
172
|
-
"Data 6": "2000"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"Date": "3/15/2016",
|
|
176
|
-
"Data 1": "500",
|
|
177
|
-
"Data 2": "300",
|
|
178
|
-
"Data 3": "290",
|
|
179
|
-
"Data 4": "100",
|
|
180
|
-
"Data 5": "200",
|
|
181
|
-
"Data 6": "250"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"Date": "4/15/2016",
|
|
185
|
-
"Data 1": "1200",
|
|
186
|
-
"Data 2": "160",
|
|
187
|
-
"Data 3": "230",
|
|
188
|
-
"Data 4": "180",
|
|
189
|
-
"Data 5": "160",
|
|
190
|
-
"Data 6": "220"
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"Date": "5/15/2016",
|
|
194
|
-
"Data 1": "8000",
|
|
195
|
-
"Data 2": "350",
|
|
196
|
-
"Data 3": "300",
|
|
197
|
-
"Data 4": "150",
|
|
198
|
-
"Data 5": "130",
|
|
199
|
-
"Data 6": "100"
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"Date": "6/15/2016",
|
|
203
|
-
"Data 1": "9000",
|
|
204
|
-
"Data 2": "220",
|
|
205
|
-
"Data 3": "320",
|
|
206
|
-
"Data 4": "100",
|
|
207
|
-
"Data 5": "220",
|
|
208
|
-
"Data 6": "300"
|
|
209
|
-
}
|
|
210
|
-
],
|
|
211
|
-
"active": true,
|
|
212
|
-
"pattern_id": "brush_pattern",
|
|
213
|
-
"accent_color": "#ddd"
|
|
214
|
-
},
|
|
215
153
|
"exclusions": {
|
|
216
154
|
"active": false,
|
|
217
155
|
"keys": []
|
|
@@ -319,12 +257,7 @@
|
|
|
319
257
|
"isStacked": false
|
|
320
258
|
},
|
|
321
259
|
"showChartBrush": false,
|
|
322
|
-
"customColors": [
|
|
323
|
-
"red",
|
|
324
|
-
"orange",
|
|
325
|
-
"yellow",
|
|
326
|
-
"teal"
|
|
327
|
-
],
|
|
260
|
+
"customColors": ["red", "orange", "yellow", "teal"],
|
|
328
261
|
"visualizationType": "Area Chart",
|
|
329
262
|
"data": [
|
|
330
263
|
{
|
|
@@ -390,4 +323,4 @@
|
|
|
390
323
|
},
|
|
391
324
|
"validated": 4.23,
|
|
392
325
|
"dynamicMarginTop": 0
|
|
393
|
-
}
|
|
326
|
+
}
|