@@ -30,126 +30,6 @@ export default class App extends React.Component {
30
30
< h3 > VictoryChart</ h3 >
31
31
< p > Line chart of function < code > y = x^2</ code > </ p >
32
32
33
- < VictoryGroup style = { style }
34
- containerComponent = {
35
- < VictorySelectionContainer
36
- selectionStyle = { {
37
- stroke : "tomato" , strokeWidth : 2 , fill : "tomato" , fillOpacity : 0.1
38
- } }
39
- />
40
- }
41
- >
42
- < VictoryScatter
43
- style = { {
44
- data : { fill : "tomato" }
45
- } }
46
- size = { ( datum , active ) => active ? 5 : 3 }
47
- data = { [
48
- { x : 1 , y : - 5 } ,
49
- { x : 2 , y : 4 } ,
50
- { x : 3 , y : 2 } ,
51
- { x : 4 , y : 3 } ,
52
- { x : 5 , y : 1 } ,
53
- { x : 6 , y : - 3 } ,
54
- { x : 7 , y : 3 }
55
- ] }
56
- />
57
- < VictoryScatter
58
- style = { {
59
- data : { fill : "blue" }
60
- } }
61
- size = { ( datum , active ) => active ? 5 : 3 }
62
- data = { [
63
- { x : 1 , y : - 3 } ,
64
- { x : 2 , y : 5 } ,
65
- { x : 3 , y : 3 } ,
66
- { x : 4 , y : 0 } ,
67
- { x : 5 , y : - 2 } ,
68
- { x : 6 , y : - 2 } ,
69
- { x : 7 , y : 5 }
70
- ] }
71
- />
72
- < VictoryScatter
73
- data = { [
74
- { x : 1 , y : 5 } ,
75
- { x : 2 , y : - 4 } ,
76
- { x : 3 , y : - 2 } ,
77
- { x : 4 , y : - 3 } ,
78
- { x : 5 , y : - 1 } ,
79
- { x : 6 , y : 3 } ,
80
- { x : 7 , y : - 3 }
81
- ] }
82
- size = { ( datum , active ) => active ? 5 : 3 }
83
- />
84
- </ VictoryGroup >
85
-
86
- < VictoryStack style = { style }
87
- containerComponent = {
88
- < VictorySelectionContainer
89
- selectionStyle = { {
90
- stroke : "tomato" , strokeWidth : 2 , fill : "tomato" , fillOpacity : 0.1
91
- } }
92
- />
93
- }
94
- >
95
- < VictoryBar
96
- style = { {
97
- data : {
98
- fill : "tomato" ,
99
- stroke : ( d , active ) => active ? "black" : "none" ,
100
- strokeWidth : 2
101
- }
102
- } }
103
- size = { ( datum , active ) => active ? 5 : 3 }
104
- data = { [
105
- { x : 1 , y : - 5 } ,
106
- { x : 2 , y : 4 } ,
107
- { x : 3 , y : 2 } ,
108
- { x : 4 , y : 3 } ,
109
- { x : 5 , y : 1 } ,
110
- { x : 6 , y : - 3 } ,
111
- { x : 7 , y : 3 }
112
- ] }
113
- />
114
- < VictoryBar
115
- style = { {
116
- data : {
117
- fill : "orange" ,
118
- stroke : ( d , active ) => active ? "black" : "none" ,
119
- strokeWidth : 2
120
- }
121
- } }
122
- size = { ( datum , active ) => active ? 5 : 3 }
123
- data = { [
124
- { x : 1 , y : - 3 } ,
125
- { x : 2 , y : 5 } ,
126
- { x : 3 , y : 3 } ,
127
- { x : 4 , y : 0 } ,
128
- { x : 5 , y : - 2 } ,
129
- { x : 6 , y : - 2 } ,
130
- { x : 7 , y : 5 }
131
- ] }
132
- />
133
- < VictoryBar
134
- style = { {
135
- data : {
136
- fill : "gold" ,
137
- stroke : ( d , active ) => active ? "black" : "none" ,
138
- strokeWidth : 2
139
- }
140
- } }
141
- data = { [
142
- { x : 1 , y : 5 } ,
143
- { x : 2 , y : - 4 } ,
144
- { x : 3 , y : - 2 } ,
145
- { x : 4 , y : - 3 } ,
146
- { x : 5 , y : - 1 } ,
147
- { x : 6 , y : 3 } ,
148
- { x : 7 , y : - 3 }
149
- ] }
150
- />
151
- </ VictoryStack >
152
-
153
33
< VictoryChart style = { style } >
154
34
< VictoryLine y = { ( data ) => data . x * data . x } />
155
35
</ VictoryChart >
@@ -280,6 +160,127 @@ export default class App extends React.Component {
280
160
< p > Default props</ p >
281
161
< VictoryArea style = { style } />
282
162
163
+ < h3 > VictorySelectionContainer</ h3 >
164
+
165
+ < VictoryGroup style = { style }
166
+ containerComponent = {
167
+ < VictorySelectionContainer
168
+ selectionStyle = { {
169
+ stroke : "tomato" , strokeWidth : 2 , fill : "tomato" , fillOpacity : 0.1
170
+ } }
171
+ />
172
+ }
173
+ >
174
+ < VictoryScatter
175
+ style = { {
176
+ data : { fill : "tomato" }
177
+ } }
178
+ size = { ( datum , active ) => active ? 5 : 3 }
179
+ data = { [
180
+ { x : 1 , y : - 5 } ,
181
+ { x : 2 , y : 4 } ,
182
+ { x : 3 , y : 2 } ,
183
+ { x : 4 , y : 3 } ,
184
+ { x : 5 , y : 1 } ,
185
+ { x : 6 , y : - 3 } ,
186
+ { x : 7 , y : 3 }
187
+ ] }
188
+ />
189
+ < VictoryScatter
190
+ style = { {
191
+ data : { fill : "blue" }
192
+ } }
193
+ size = { ( datum , active ) => active ? 5 : 3 }
194
+ data = { [
195
+ { x : 1 , y : - 3 } ,
196
+ { x : 2 , y : 5 } ,
197
+ { x : 3 , y : 3 } ,
198
+ { x : 4 , y : 0 } ,
199
+ { x : 5 , y : - 2 } ,
200
+ { x : 6 , y : - 2 } ,
201
+ { x : 7 , y : 5 }
202
+ ] }
203
+ />
204
+ < VictoryScatter
205
+ data = { [
206
+ { x : 1 , y : 5 } ,
207
+ { x : 2 , y : - 4 } ,
208
+ { x : 3 , y : - 2 } ,
209
+ { x : 4 , y : - 3 } ,
210
+ { x : 5 , y : - 1 } ,
211
+ { x : 6 , y : 3 } ,
212
+ { x : 7 , y : - 3 }
213
+ ] }
214
+ size = { ( datum , active ) => active ? 5 : 3 }
215
+ />
216
+ </ VictoryGroup >
217
+
218
+ < VictoryStack style = { style }
219
+ containerComponent = {
220
+ < VictorySelectionContainer
221
+ selectionStyle = { {
222
+ stroke : "tomato" , strokeWidth : 2 , fill : "tomato" , fillOpacity : 0.1
223
+ } }
224
+ />
225
+ }
226
+ >
227
+ < VictoryBar
228
+ style = { {
229
+ data : {
230
+ fill : "tomato" ,
231
+ stroke : ( d , active ) => active ? "black" : "none" ,
232
+ strokeWidth : 2
233
+ }
234
+ } }
235
+ size = { ( datum , active ) => active ? 5 : 3 }
236
+ data = { [
237
+ { x : 1 , y : - 5 } ,
238
+ { x : 2 , y : 4 } ,
239
+ { x : 3 , y : 2 } ,
240
+ { x : 4 , y : 3 } ,
241
+ { x : 5 , y : 1 } ,
242
+ { x : 6 , y : - 3 } ,
243
+ { x : 7 , y : 3 }
244
+ ] }
245
+ />
246
+ < VictoryBar
247
+ style = { {
248
+ data : {
249
+ fill : "orange" ,
250
+ stroke : ( d , active ) => active ? "black" : "none" ,
251
+ strokeWidth : 2
252
+ }
253
+ } }
254
+ size = { ( datum , active ) => active ? 5 : 3 }
255
+ data = { [
256
+ { x : 1 , y : - 3 } ,
257
+ { x : 2 , y : 5 } ,
258
+ { x : 3 , y : 3 } ,
259
+ { x : 4 , y : 0 } ,
260
+ { x : 5 , y : - 2 } ,
261
+ { x : 6 , y : - 2 } ,
262
+ { x : 7 , y : 5 }
263
+ ] }
264
+ />
265
+ < VictoryBar
266
+ style = { {
267
+ data : {
268
+ fill : "gold" ,
269
+ stroke : ( d , active ) => active ? "black" : "none" ,
270
+ strokeWidth : 2
271
+ }
272
+ } }
273
+ data = { [
274
+ { x : 1 , y : 5 } ,
275
+ { x : 2 , y : - 4 } ,
276
+ { x : 3 , y : - 2 } ,
277
+ { x : 4 , y : - 3 } ,
278
+ { x : 5 , y : - 1 } ,
279
+ { x : 6 , y : 3 } ,
280
+ { x : 7 , y : - 3 }
281
+ ] }
282
+ />
283
+ </ VictoryStack >
283
284
</ div >
284
285
) ;
285
286
}
0 commit comments