UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

10 lines (9 loc) 276 B
import deepExtend from './deep-extend'; export default function setDefaultOptions(type, options) { const proto = type.prototype; if (proto.options) { proto.options = deepExtend({}, proto.options, options); } else { proto.options = options; } }