@easyv/config 1.0.53 → 1.0.54
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/series.js +3 -2
- package/package.json +1 -1
- package/src/series.js +2 -1
package/lib/series.js
CHANGED
|
@@ -333,7 +333,7 @@ var defaultLineSeries = {
|
|
|
333
333
|
};
|
|
334
334
|
var defaultIcon = {
|
|
335
335
|
show: true,
|
|
336
|
-
mode: '
|
|
336
|
+
mode: 'single',
|
|
337
337
|
inner: {
|
|
338
338
|
color: '#83C4FF',
|
|
339
339
|
radius: 3
|
|
@@ -596,7 +596,8 @@ var icon = function icon() {
|
|
|
596
596
|
name: 'color',
|
|
597
597
|
displayName: '颜色',
|
|
598
598
|
value: color,
|
|
599
|
-
type: 'color'
|
|
599
|
+
type: 'color',
|
|
600
|
+
markColorType: 'palette'
|
|
600
601
|
}, {
|
|
601
602
|
rule: [['show', '$eq', true], ['mode', '$eq', 'single']],
|
|
602
603
|
name: 'radius',
|
package/package.json
CHANGED
package/src/series.js
CHANGED
|
@@ -284,7 +284,7 @@ const defaultLineSeries = {
|
|
|
284
284
|
};
|
|
285
285
|
const defaultIcon = {
|
|
286
286
|
show: true,
|
|
287
|
-
mode: '
|
|
287
|
+
mode: 'single',
|
|
288
288
|
inner: { color: '#83C4FF', radius: 3 },
|
|
289
289
|
outer: { color: 'rgba(24,144,255,0.4)', radius: 6 },
|
|
290
290
|
color: '#1283E3',
|
|
@@ -567,6 +567,7 @@ const icon = ({
|
|
|
567
567
|
displayName: '颜色',
|
|
568
568
|
value: color,
|
|
569
569
|
type: 'color',
|
|
570
|
+
markColorType: 'palette',
|
|
570
571
|
},
|
|
571
572
|
{
|
|
572
573
|
rule: [
|