mixin
Description
Adds properties of the 'source' object into the 'target' object
mixin: (target: CustomObject, source: CustomObject, force?: boolean) => void
Parameters
target- (required) CustomObject - the target objectsource- (required) CustomObject - the source objectforce- (optional) boolean - optional, if true, properties of the 'source' will overwrite matching properties of the 'target', if there are any. If false (by default), properties that already exist in the 'target' will be omitted
Example
gantt.mixin(target, source, force);
Change log
- added in version 4.0