@pie-lib/charting 5.36.3-next.0 → 5.36.3-next.155

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/CHANGELOG.md +17 -96
  2. package/esm/package.json +3 -0
  3. package/lib/actions-button.js +60 -90
  4. package/lib/actions-button.js.map +1 -1
  5. package/lib/axes.js +162 -238
  6. package/lib/axes.js.map +1 -1
  7. package/lib/bars/bar.js +13 -41
  8. package/lib/bars/bar.js.map +1 -1
  9. package/lib/bars/common/bars.js +61 -137
  10. package/lib/bars/common/bars.js.map +1 -1
  11. package/lib/bars/common/correct-check-icon.js +5 -6
  12. package/lib/bars/common/correct-check-icon.js.map +1 -1
  13. package/lib/bars/histogram.js +13 -41
  14. package/lib/bars/histogram.js.map +1 -1
  15. package/lib/chart-setup.js +119 -195
  16. package/lib/chart-setup.js.map +1 -1
  17. package/lib/chart-type.js +52 -43
  18. package/lib/chart-type.js.map +1 -1
  19. package/lib/chart-types.js +1 -10
  20. package/lib/chart-types.js.map +1 -1
  21. package/lib/chart.js +73 -151
  22. package/lib/chart.js.map +1 -1
  23. package/lib/common/correctness-indicators.js +109 -52
  24. package/lib/common/correctness-indicators.js.map +1 -1
  25. package/lib/common/drag-handle.js +65 -108
  26. package/lib/common/drag-handle.js.map +1 -1
  27. package/lib/common/drag-icon.js +12 -12
  28. package/lib/common/drag-icon.js.map +1 -1
  29. package/lib/common/styles.js +6 -24
  30. package/lib/common/styles.js.map +1 -1
  31. package/lib/grid.js +43 -83
  32. package/lib/grid.js.map +1 -1
  33. package/lib/index.js +0 -6
  34. package/lib/index.js.map +1 -1
  35. package/lib/key-legend.js +63 -87
  36. package/lib/key-legend.js.map +1 -1
  37. package/lib/line/common/drag-handle.js +72 -100
  38. package/lib/line/common/drag-handle.js.map +1 -1
  39. package/lib/line/common/line.js +50 -96
  40. package/lib/line/common/line.js.map +1 -1
  41. package/lib/line/line-cross.js +79 -89
  42. package/lib/line/line-cross.js.map +1 -1
  43. package/lib/line/line-dot.js +58 -76
  44. package/lib/line/line-dot.js.map +1 -1
  45. package/lib/mark-label.js +84 -119
  46. package/lib/mark-label.js.map +1 -1
  47. package/lib/plot/common/plot.js +90 -148
  48. package/lib/plot/common/plot.js.map +1 -1
  49. package/lib/plot/dot.js +32 -58
  50. package/lib/plot/dot.js.map +1 -1
  51. package/lib/plot/line.js +39 -64
  52. package/lib/plot/line.js.map +1 -1
  53. package/lib/tool-menu.js +47 -83
  54. package/lib/tool-menu.js.map +1 -1
  55. package/lib/utils.js +31 -86
  56. package/lib/utils.js.map +1 -1
  57. package/package.json +30 -16
  58. package/src/__tests__/axes.test.jsx +85 -100
  59. package/src/__tests__/chart-type.test.jsx +5 -11
  60. package/src/__tests__/chart.test.jsx +41 -50
  61. package/src/__tests__/grid.test.jsx +23 -11
  62. package/src/__tests__/mark-label.test.jsx +13 -11
  63. package/src/__tests__/utils.js +8 -2
  64. package/src/actions-button.jsx +44 -39
  65. package/src/axes.jsx +67 -81
  66. package/src/bars/__tests__/bar.test.jsx +19 -11
  67. package/src/bars/__tests__/histogram.test.jsx +19 -12
  68. package/src/bars/common/__tests__/bars.test.jsx +23 -24
  69. package/src/bars/common/bars.jsx +42 -69
  70. package/src/bars/common/correct-check-icon.jsx +5 -0
  71. package/src/chart-setup.jsx +75 -88
  72. package/src/chart-type.js +45 -22
  73. package/src/chart.jsx +19 -34
  74. package/src/common/__tests__/drag-handle.test.jsx +16 -45
  75. package/src/common/correctness-indicators.jsx +91 -13
  76. package/src/common/drag-handle.jsx +44 -64
  77. package/src/common/drag-icon.jsx +9 -2
  78. package/src/common/styles.js +1 -1
  79. package/src/grid.jsx +10 -14
  80. package/src/key-legend.jsx +62 -60
  81. package/src/line/__tests__/line-cross.test.jsx +16 -13
  82. package/src/line/__tests__/line-dot.test.jsx +16 -13
  83. package/src/line/__tests__/utils.js +8 -2
  84. package/src/line/common/__tests__/drag-handle.test.jsx +20 -45
  85. package/src/line/common/__tests__/line.test.jsx +27 -30
  86. package/src/line/common/drag-handle.jsx +61 -55
  87. package/src/line/common/line.jsx +21 -11
  88. package/src/line/line-cross.js +39 -14
  89. package/src/line/line-dot.js +27 -32
  90. package/src/mark-label.jsx +51 -47
  91. package/src/plot/__tests__/dot.test.jsx +19 -12
  92. package/src/plot/__tests__/line.test.jsx +19 -12
  93. package/src/plot/common/__tests__/plot.test.jsx +23 -24
  94. package/src/plot/common/plot.jsx +29 -24
  95. package/src/plot/dot.js +11 -4
  96. package/src/plot/line.js +16 -8
  97. package/src/tool-menu.jsx +26 -30
  98. package/src/utils.js +13 -9
  99. package/src/__tests__/__snapshots__/axes.test.jsx.snap +0 -569
  100. package/src/__tests__/__snapshots__/chart-type.test.jsx.snap +0 -14
  101. package/src/__tests__/__snapshots__/chart.test.jsx.snap +0 -595
  102. package/src/__tests__/__snapshots__/grid.test.jsx.snap +0 -72
  103. package/src/__tests__/__snapshots__/mark-label.test.jsx.snap +0 -73
  104. package/src/bars/__tests__/__snapshots__/bar.test.jsx.snap +0 -43
  105. package/src/bars/__tests__/__snapshots__/histogram.test.jsx.snap +0 -45
  106. package/src/bars/common/__tests__/__snapshots__/bars.test.jsx.snap +0 -110
  107. package/src/common/__tests__/__snapshots__/drag-handle.test.jsx.snap +0 -48
  108. package/src/line/__tests__/__snapshots__/line-cross.test.jsx.snap +0 -45
  109. package/src/line/__tests__/__snapshots__/line-dot.test.jsx.snap +0 -45
  110. package/src/line/common/__tests__/__snapshots__/drag-handle.test.jsx.snap +0 -49
  111. package/src/line/common/__tests__/__snapshots__/line.test.jsx.snap +0 -143
  112. package/src/plot/__tests__/__snapshots__/dot.test.jsx.snap +0 -45
  113. package/src/plot/__tests__/__snapshots__/line.test.jsx.snap +0 -45
  114. package/src/plot/common/__tests__/__snapshots__/plot.test.jsx.snap +0 -97
@@ -1,73 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`MarkLabel snapshot renders 1`] = `
4
- <div>
5
- <AutosizeInput
6
- injectStyles={true}
7
- inputClassName=""
8
- inputRef={[Function]}
9
- inputStyle={
10
- Object {
11
- "background": "transparent",
12
- "boxSizing": "border-box",
13
- "minWidth": undefined,
14
- "paddingLeft": 0,
15
- "paddingRight": 0,
16
- "textAlign": "center",
17
- }
18
- }
19
- minWidth={1}
20
- onBlur={[Function]}
21
- onChange={[Function]}
22
- style={
23
- Object {
24
- "left": 0,
25
- "marginTop": "0",
26
- "minWidth": undefined,
27
- "pointerEvents": "auto",
28
- "position": "fixed",
29
- "top": 0,
30
- "transform": "rotate(undefineddeg)",
31
- "transformOrigin": "left",
32
- "visibility": "unset",
33
- }
34
- }
35
- />
36
- </div>
37
- `;
38
-
39
- exports[`MarkLabel snapshot renders 2`] = `
40
- <div>
41
- <AutosizeInput
42
- injectStyles={true}
43
- inputClassName=""
44
- inputRef={[Function]}
45
- inputStyle={
46
- Object {
47
- "background": "transparent",
48
- "boxSizing": "border-box",
49
- "minWidth": undefined,
50
- "paddingLeft": 0,
51
- "paddingRight": 0,
52
- "textAlign": "center",
53
- }
54
- }
55
- minWidth={1}
56
- onBlur={[Function]}
57
- onChange={[Function]}
58
- style={
59
- Object {
60
- "left": 0,
61
- "marginTop": "0",
62
- "minWidth": undefined,
63
- "pointerEvents": "auto",
64
- "position": "fixed",
65
- "top": 0,
66
- "transform": "rotate(undefineddeg)",
67
- "transformOrigin": "left",
68
- "visibility": "unset",
69
- }
70
- }
71
- />
72
- </div>
73
- `;
@@ -1,43 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`BarChart snapshot renders 1`] = `
4
- <Bars
5
- className="className"
6
- classes={Object {}}
7
- graphProps={
8
- Object {
9
- "domain": Object {
10
- "max": 1,
11
- "min": 0,
12
- "step": 1,
13
- },
14
- "range": Object {
15
- "max": 1,
16
- "min": 0,
17
- "step": 1,
18
- },
19
- "scale": Object {
20
- "x": [MockFunction],
21
- "y": [MockFunction],
22
- },
23
- "size": Object {
24
- "height": 400,
25
- "width": 400,
26
- },
27
- "snap": Object {
28
- "x": [MockFunction],
29
- "y": [MockFunction],
30
- },
31
- }
32
- }
33
- xBand={[Function]}
34
- />
35
- `;
36
-
37
- exports[`BarChart snapshot renders without graphProps 1`] = `
38
- <Bars
39
- className="className"
40
- classes={Object {}}
41
- xBand={[Function]}
42
- />
43
- `;
@@ -1,45 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`HistogramChart snapshot renders 1`] = `
4
- <Bars
5
- className="className"
6
- classes={Object {}}
7
- graphProps={
8
- Object {
9
- "domain": Object {
10
- "max": 1,
11
- "min": 0,
12
- "step": 1,
13
- },
14
- "range": Object {
15
- "max": 1,
16
- "min": 0,
17
- "step": 1,
18
- },
19
- "scale": Object {
20
- "x": [MockFunction],
21
- "y": [MockFunction],
22
- },
23
- "size": Object {
24
- "height": 400,
25
- "width": 400,
26
- },
27
- "snap": Object {
28
- "x": [MockFunction],
29
- "y": [MockFunction],
30
- },
31
- }
32
- }
33
- histogram={true}
34
- xBand={[Function]}
35
- />
36
- `;
37
-
38
- exports[`HistogramChart snapshot renders without graphProps 1`] = `
39
- <Bars
40
- className="className"
41
- classes={Object {}}
42
- histogram={true}
43
- xBand={[Function]}
44
- />
45
- `;
@@ -1,110 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Bars snapshot renders 1`] = `
4
- <t>
5
- <WithStyles(RawBar)
6
- graphProps={
7
- Object {
8
- "domain": Object {
9
- "max": 1,
10
- "min": 0,
11
- "step": 1,
12
- },
13
- "range": Object {
14
- "max": 1,
15
- "min": 0,
16
- "step": 1,
17
- },
18
- "scale": Object {
19
- "x": [MockFunction],
20
- "y": [MockFunction],
21
- },
22
- "size": Object {
23
- "height": 400,
24
- "width": 400,
25
- },
26
- "snap": Object {
27
- "x": [MockFunction],
28
- "y": [MockFunction],
29
- },
30
- }
31
- }
32
- index={0}
33
- key="bar-0-0-0"
34
- label="0"
35
- onChangeCategory={[Function]}
36
- value={0}
37
- xBand={[Function]}
38
- />
39
- </t>
40
- `;
41
-
42
- exports[`RawBar snapshot renders 1`] = `
43
- <g
44
- onMouseEnter={[Function]}
45
- onMouseLeave={[Function]}
46
- onTouchEnd={[Function]}
47
- onTouchStart={[Function]}
48
- >
49
- <P
50
- height={NaN}
51
- style={
52
- Object {
53
- "fill": null,
54
- }
55
- }
56
- y={NaN}
57
- />
58
- <WithStyles(RawDragHandle)
59
- color={null}
60
- graphProps={
61
- Object {
62
- "domain": Object {
63
- "max": 1,
64
- "min": 0,
65
- "step": 1,
66
- },
67
- "range": Object {
68
- "max": 1,
69
- "min": 0,
70
- "step": 1,
71
- },
72
- "scale": Object {
73
- "x": [MockFunction],
74
- "y": [MockFunction] {
75
- "calls": Array [
76
- Array [
77
- NaN,
78
- ],
79
- Array [
80
- NaN,
81
- ],
82
- ],
83
- "results": Array [
84
- Object {
85
- "type": "return",
86
- "value": NaN,
87
- },
88
- Object {
89
- "type": "return",
90
- "value": NaN,
91
- },
92
- ],
93
- },
94
- },
95
- "size": Object {
96
- "height": 400,
97
- "width": 400,
98
- },
99
- "snap": Object {
100
- "x": [MockFunction],
101
- "y": [MockFunction],
102
- },
103
- }
104
- }
105
- isHovered={false}
106
- onDrag={[Function]}
107
- onDragStop={[Function]}
108
- />
109
- </g>
110
- `;
@@ -1,48 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`BasePoint snapshot renders 1`] = `
4
- <RawDragHandle
5
- className="className"
6
- classes={
7
- Object {
8
- "correctIcon": "RawDragHandle-correctIcon-5",
9
- "correctnessIcon": "RawDragHandle-correctnessIcon-7",
10
- "handle": "RawDragHandle-handle-1",
11
- "handleContainer": "RawDragHandle-handleContainer-3",
12
- "incorrectIcon": "RawDragHandle-incorrectIcon-6",
13
- "svgOverflowVisible": "RawDragHandle-svgOverflowVisible-4",
14
- "transparentHandle": "RawDragHandle-transparentHandle-2",
15
- }
16
- }
17
- graphProps={
18
- Object {
19
- "domain": Object {
20
- "max": 1,
21
- "min": 0,
22
- "step": 1,
23
- },
24
- "range": Object {
25
- "max": 1,
26
- "min": 0,
27
- "step": 1,
28
- },
29
- "scale": Object {
30
- "x": [MockFunction],
31
- "y": [MockFunction],
32
- },
33
- "size": Object {
34
- "height": 400,
35
- "width": 400,
36
- },
37
- "snap": Object {
38
- "x": [MockFunction],
39
- "y": [MockFunction],
40
- },
41
- }
42
- }
43
- onChange={[MockFunction]}
44
- width={100}
45
- x={0}
46
- y={0}
47
- />
48
- `;
@@ -1,45 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`LineChart snapshot renders 1`] = `
4
- <Line
5
- CustomDraggableComponent={[Function]}
6
- className="className"
7
- classes={Object {}}
8
- graphProps={
9
- Object {
10
- "domain": Object {
11
- "max": 1,
12
- "min": 0,
13
- "step": 1,
14
- },
15
- "range": Object {
16
- "max": 1,
17
- "min": 0,
18
- "step": 1,
19
- },
20
- "scale": Object {
21
- "x": [MockFunction],
22
- "y": [MockFunction],
23
- },
24
- "size": Object {
25
- "height": 400,
26
- "width": 400,
27
- },
28
- "snap": Object {
29
- "x": [MockFunction],
30
- "y": [MockFunction],
31
- },
32
- }
33
- }
34
- xBand={[Function]}
35
- />
36
- `;
37
-
38
- exports[`LineChart snapshot renders without graphProps 1`] = `
39
- <Line
40
- CustomDraggableComponent={[Function]}
41
- className="className"
42
- classes={Object {}}
43
- xBand={[Function]}
44
- />
45
- `;
@@ -1,45 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`LineChart snapshot renders 1`] = `
4
- <Line
5
- CustomDraggableComponent={[Function]}
6
- className="className"
7
- classes={Object {}}
8
- graphProps={
9
- Object {
10
- "domain": Object {
11
- "max": 1,
12
- "min": 0,
13
- "step": 1,
14
- },
15
- "range": Object {
16
- "max": 1,
17
- "min": 0,
18
- "step": 1,
19
- },
20
- "scale": Object {
21
- "x": [MockFunction],
22
- "y": [MockFunction],
23
- },
24
- "size": Object {
25
- "height": 400,
26
- "width": 400,
27
- },
28
- "snap": Object {
29
- "x": [MockFunction],
30
- "y": [MockFunction],
31
- },
32
- }
33
- }
34
- xBand={[Function]}
35
- />
36
- `;
37
-
38
- exports[`LineChart snapshot renders without graphProps 1`] = `
39
- <Line
40
- CustomDraggableComponent={[Function]}
41
- className="className"
42
- classes={Object {}}
43
- xBand={[Function]}
44
- />
45
- `;
@@ -1,49 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`BasePoint snapshot renders 1`] = `
4
- <RawDragHandle
5
- className="className"
6
- classes={
7
- Object {
8
- "correctIcon": "RawDragHandle-correctIcon-5",
9
- "correctnessIcon": "RawDragHandle-correctnessIcon-7",
10
- "disabledPoint": "RawDragHandle-disabledPoint-4",
11
- "handle": "RawDragHandle-handle-1",
12
- "incorrectIcon": "RawDragHandle-incorrectIcon-6",
13
- "line": "RawDragHandle-line-3",
14
- "smallIcon": "RawDragHandle-smallIcon-8",
15
- "transparentHandle": "RawDragHandle-transparentHandle-2",
16
- }
17
- }
18
- graphProps={
19
- Object {
20
- "domain": Object {
21
- "max": 1,
22
- "min": 0,
23
- "step": 1,
24
- },
25
- "range": Object {
26
- "max": 1,
27
- "min": 0,
28
- "step": 1,
29
- },
30
- "scale": Object {
31
- "x": [MockFunction],
32
- "y": [MockFunction],
33
- },
34
- "size": Object {
35
- "height": 400,
36
- "width": 400,
37
- },
38
- "snap": Object {
39
- "x": [MockFunction],
40
- "y": [MockFunction],
41
- },
42
- }
43
- }
44
- onChange={[MockFunction]}
45
- width={100}
46
- x={0}
47
- y={0}
48
- />
49
- `;
@@ -1,143 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Line snapshot renders 1`] = `
4
- <t>
5
- <WithStyles(RawLine)
6
- className="className"
7
- classes={Object {}}
8
- data={
9
- Array [
10
- Object {
11
- "label": "0",
12
- "value": 0,
13
- },
14
- ]
15
- }
16
- graphProps={
17
- Object {
18
- "domain": Object {
19
- "max": 1,
20
- "min": 0,
21
- "step": 1,
22
- },
23
- "range": Object {
24
- "max": 1,
25
- "min": 0,
26
- "step": 1,
27
- },
28
- "scale": Object {
29
- "x": [MockFunction],
30
- "y": [MockFunction],
31
- },
32
- "size": Object {
33
- "height": 400,
34
- "width": 400,
35
- },
36
- "snap": Object {
37
- "x": [MockFunction],
38
- "y": [MockFunction],
39
- },
40
- }
41
- }
42
- onChange={[Function]}
43
- xBand={[Function]}
44
- />
45
- </t>
46
- `;
47
-
48
- exports[`RawLine snapshot renders 1`] = `
49
- <Fragment>
50
- <u
51
- data={
52
- Array [
53
- Object {
54
- "label": "A",
55
- "value": 0,
56
- "x": 0,
57
- "y": 0,
58
- },
59
- Object {
60
- "label": "B",
61
- "value": 1,
62
- "x": 1,
63
- "y": 1,
64
- },
65
- ]
66
- }
67
- x={[Function]}
68
- y={[Function]}
69
- />
70
- <WithStyles(RawDragHandle)
71
- graphProps={
72
- Object {
73
- "domain": Object {
74
- "max": 1,
75
- "min": 0,
76
- "step": 1,
77
- },
78
- "range": Object {
79
- "max": 1,
80
- "min": 0,
81
- "step": 1,
82
- },
83
- "scale": Object {
84
- "x": [MockFunction],
85
- "y": [MockFunction],
86
- },
87
- "size": Object {
88
- "height": 400,
89
- "width": 400,
90
- },
91
- "snap": Object {
92
- "x": [MockFunction],
93
- "y": [MockFunction],
94
- },
95
- }
96
- }
97
- key="point-0-0"
98
- label="A"
99
- onDrag={[Function]}
100
- onDragStart={[Function]}
101
- onDragStop={[Function]}
102
- r={6}
103
- x={0}
104
- y={0}
105
- />
106
- <WithStyles(RawDragHandle)
107
- graphProps={
108
- Object {
109
- "domain": Object {
110
- "max": 1,
111
- "min": 0,
112
- "step": 1,
113
- },
114
- "range": Object {
115
- "max": 1,
116
- "min": 0,
117
- "step": 1,
118
- },
119
- "scale": Object {
120
- "x": [MockFunction],
121
- "y": [MockFunction],
122
- },
123
- "size": Object {
124
- "height": 400,
125
- "width": 400,
126
- },
127
- "snap": Object {
128
- "x": [MockFunction],
129
- "y": [MockFunction],
130
- },
131
- }
132
- }
133
- key="point-1-1"
134
- label="B"
135
- onDrag={[Function]}
136
- onDragStart={[Function]}
137
- onDragStop={[Function]}
138
- r={6}
139
- x={1}
140
- y={1}
141
- />
142
- </Fragment>
143
- `;
@@ -1,45 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`DotPlot snapshot renders 1`] = `
4
- <Plot
5
- CustomBarElement={[Function]}
6
- className="className"
7
- classes={Object {}}
8
- graphProps={
9
- Object {
10
- "domain": Object {
11
- "max": 1,
12
- "min": 0,
13
- "step": 1,
14
- },
15
- "range": Object {
16
- "max": 1,
17
- "min": 0,
18
- "step": 1,
19
- },
20
- "scale": Object {
21
- "x": [MockFunction],
22
- "y": [MockFunction],
23
- },
24
- "size": Object {
25
- "height": 400,
26
- "width": 400,
27
- },
28
- "snap": Object {
29
- "x": [MockFunction],
30
- "y": [MockFunction],
31
- },
32
- }
33
- }
34
- xBand={[Function]}
35
- />
36
- `;
37
-
38
- exports[`DotPlot snapshot renders without graphProps 1`] = `
39
- <Plot
40
- CustomBarElement={[Function]}
41
- className="className"
42
- classes={Object {}}
43
- xBand={[Function]}
44
- />
45
- `;
@@ -1,45 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`LinePlot snapshot renders 1`] = `
4
- <Plot
5
- CustomBarElement={[Function]}
6
- className="className"
7
- classes={Object {}}
8
- graphProps={
9
- Object {
10
- "domain": Object {
11
- "max": 1,
12
- "min": 0,
13
- "step": 1,
14
- },
15
- "range": Object {
16
- "max": 1,
17
- "min": 0,
18
- "step": 1,
19
- },
20
- "scale": Object {
21
- "x": [MockFunction],
22
- "y": [MockFunction],
23
- },
24
- "size": Object {
25
- "height": 400,
26
- "width": 400,
27
- },
28
- "snap": Object {
29
- "x": [MockFunction],
30
- "y": [MockFunction],
31
- },
32
- }
33
- }
34
- xBand={[Function]}
35
- />
36
- `;
37
-
38
- exports[`LinePlot snapshot renders without graphProps 1`] = `
39
- <Plot
40
- CustomBarElement={[Function]}
41
- className="className"
42
- classes={Object {}}
43
- xBand={[Function]}
44
- />
45
- `;