UNPKG

billboard.js

Version:

Re-usable easy interface JavaScript chart library, based on D3 v4+

32 lines (31 loc) 990 B
/** * Copyright (c) 2017 ~ present NAVER Corp. * billboard.js project is licensed under the MIT license */ /** * boost config options */ export default { /** * Set boost options * @name boost * @memberof Options * @type {object} * @property {object} boost boost object * @property {boolean} [boost.useCssRule=false] Avoid setting inline styles for each shape elements. * - **NOTE:** * - Will append <style> to the head tag and will add shpes' CSS rules dynamically. * - For now, covers colors related properties (fill, stroke, etc.) only. * @property {boolean} [boost.useWorker=false] Use Web Worker as possible for processing. * - **NOTE:** * - For now, only applies for data conversion at the initial time. * - As of Web Worker's async nature, handling chart instance synchrously is not recommended. * @example * boost: { * useCssRule: true, * useWorker: false * } */ boost_useCssRule: false, boost_useWorker: false };