Plugin/sparkline/Options.ts

  1. /**
  2. * Copyright (c) 2021 ~ present NAVER Corp.
  3. * billboard.js project is licensed under the MIT license
  4. */
  5. /**
  6. * Sparkline plugin option class
  7. * @class SparklineOptions
  8. * @param {Options} options Sparkline plugin options
  9. * @augments Plugin
  10. * @returns {TableviewOptions}
  11. * @private
  12. */
  13. export default class Options {
  14. constructor() {
  15. return {
  16. /**
  17. * Specify sparkline charts holder selector.
  18. * - **NOTE:** The amount of holder should match with the amount of data. If has less, will append necessaray amount nodes as sibling of main chart.
  19. * @name selector
  20. * @memberof plugin-sparkline
  21. * @type {string}
  22. * @default undefined
  23. * @example
  24. * selector: ".sparkline"
  25. */
  26. selector: undefined
  27. };
  28. }
  29. }