@easyv/config 1.1.23 → 1.1.24

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 CHANGED
@@ -152,7 +152,7 @@ var bandSeries = function bandSeries() {
152
152
  type: 'multicolor',
153
153
  value: fill,
154
154
  markColorType: 'seriesGradient'
155
- }, fillType !== undefined && {
155
+ }, (fillType !== undefined || patternType !== undefined) && {
156
156
  rule: [['fillType', '$eq', 'color']],
157
157
  name: 'border',
158
158
  displayName: '描边',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyv/config",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/series.js CHANGED
@@ -120,7 +120,7 @@ export const bandSeries = (
120
120
  value: fill,
121
121
  markColorType: 'seriesGradient'
122
122
  },
123
- fillType !== undefined && {
123
+ (fillType !== undefined || patternType !== undefined) && {
124
124
  rule: [['fillType', '$eq', 'color']],
125
125
  name: 'border',
126
126
  displayName: '描边',