scope : [ "global", "series", "y", "y2" ]
},
strokePattern : {
- type : "array<integer>",
+ type : "array<int>",
scope : [ "global", "series", "y", "y2" ]
},
strokeWidth : {
- type : "integer",
+ type : "float",
scope : [ "global", "series", "y", "y2" ]
},
timingName : {
results[opt] = Palette.parseFloatArray(value);
} else if (type == "array<boolean>") {
results[opt] = Palette.parseBooleanArray(value);
+ } else if (type == "array<int>") {
+ results[opt] = Palette.parseIntArray(value);
} else if (type == "array<Date>") {
results[opt] = Palette.parseIntArray(value);
} else if (isFunction) {
input.textContent = value ? "defined" : "not defined";
this.model[opt].functionString = value ? value.toString() : null;
} else {
- if (value) {
+ if (value != undefined) {
input.value = value;
}
}