Plugin/bubblecompare/Options.ts

  1. /**
  2. * Copyright (c) 2017 ~ present NAVER Corp.
  3. * billboard.js project is licensed under the MIT license
  4. */
  5. /**
  6. * Bubble compare plugin option class
  7. * @class BubblecompareOptions
  8. * @param {Options} options Bubblecompare plugin options
  9. * @augments Plugin
  10. * @returns {BubblecompareOptions}
  11. * @private
  12. */
  13. export default class Options {
  14. constructor() {
  15. return {
  16. /**
  17. * Set minimum size of bubble radius. (px)
  18. * @name minR
  19. * @memberof plugin-bubblecompare
  20. * @type {number}
  21. * @default 11
  22. * @example
  23. * minR: 11
  24. */
  25. minR: 11,
  26. /**
  27. * Set maximum size of bubble radius. (px)
  28. * @name maxR
  29. * @memberof plugin-bubblecompare
  30. * @type {number}
  31. * @default 11
  32. * @example
  33. * maxR: 74
  34. */
  35. maxR: 11,
  36. /**
  37. * Specify bubble expand ratio when focused
  38. * @name expandScale
  39. * @memberof plugin-bubblecompare
  40. * @type {number}
  41. * @default 1
  42. * @example
  43. * expandScale: 1.2
  44. */
  45. expandScale: 1
  46. };
  47. }
  48. }