@easyv/config 1.2.4 → 1.2.6
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/lib/label.js +3 -0
- package/lib/series.js +5 -5
- package/package.json +1 -1
- package/src/label.js +4 -0
- package/src/series.js +4 -4
package/lib/label.js
CHANGED
package/lib/series.js
CHANGED
|
@@ -332,19 +332,19 @@ var defaultLineSeries = {
|
|
|
332
332
|
linear: {
|
|
333
333
|
stops: [{
|
|
334
334
|
offset: 0,
|
|
335
|
-
color: '
|
|
335
|
+
color: 'rgba(255,255,255,0)'
|
|
336
336
|
}, {
|
|
337
|
-
offset:
|
|
338
|
-
color: '
|
|
337
|
+
offset: 20,
|
|
338
|
+
color: 'rgba(255,255,255,0.3)'
|
|
339
339
|
}, {
|
|
340
340
|
offset: 100,
|
|
341
|
-
color: '
|
|
341
|
+
color: 'rgba(255,255,255,1)'
|
|
342
342
|
}],
|
|
343
343
|
angle: 30,
|
|
344
344
|
opacity: 1
|
|
345
345
|
}
|
|
346
346
|
},
|
|
347
|
-
length:
|
|
347
|
+
length: 150,
|
|
348
348
|
width: 2,
|
|
349
349
|
unitStep: 1
|
|
350
350
|
}
|
package/package.json
CHANGED
package/src/label.js
CHANGED
package/src/series.js
CHANGED
|
@@ -303,15 +303,15 @@ const defaultLineSeries = {
|
|
|
303
303
|
pure: '#fff',
|
|
304
304
|
linear: {
|
|
305
305
|
stops: [
|
|
306
|
-
{ offset: 0, color: '
|
|
307
|
-
{ offset:
|
|
308
|
-
{ offset: 100, color: '
|
|
306
|
+
{ offset: 0, color: 'rgba(255,255,255,0)' },
|
|
307
|
+
{ offset: 20, color: 'rgba(255,255,255,0.3)' },
|
|
308
|
+
{ offset: 100, color: 'rgba(255,255,255,1)' }
|
|
309
309
|
],
|
|
310
310
|
angle: 30,
|
|
311
311
|
opacity: 1,
|
|
312
312
|
},
|
|
313
313
|
},
|
|
314
|
-
length:
|
|
314
|
+
length: 150,
|
|
315
315
|
width: 2,
|
|
316
316
|
unitStep: 1,
|
|
317
317
|
},
|