Plugin/stanford/Options.ts

  1. /**
  2. * Copyright (c) 2017 ~ present NAVER Corp.
  3. * billboard.js project is licensed under the MIT license
  4. */
  5. /**
  6. * Stanford diagram plugin option class
  7. * @class StanfordOptions
  8. * @param {Options} options Stanford plugin options
  9. * @augments Plugin
  10. * @returns {StanfordOptions}
  11. * @private
  12. */
  13. export default class Options {
  14. constructor() {
  15. return {
  16. /**
  17. * Set the color of the color scale. This function receives a value between 0 and 1, and should return a color.
  18. * @name colors
  19. * @memberof plugin-stanford
  20. * @type {Function}
  21. * @default undefined
  22. * @example
  23. * colors: d3.interpolateHslLong(
  24. * d3.hsl(250, 1, 0.5), d3.hsl(0, 1, 0.5)
  25. * )
  26. */
  27. colors: undefined,
  28. /**
  29. * Specify the key of epochs values in the data.
  30. * @name epochs
  31. * @memberof plugin-stanford
  32. * @type {Array}
  33. * @default []
  34. * @example
  35. * epochs: [ 1, 1, 2, 2, ... ]
  36. */
  37. epochs: <number[]>[],
  38. /**
  39. * Show additional lines anywhere on the chart.
  40. * - Each line object should consist with following options:
  41. *
  42. * | Key | Type | Description |
  43. * | --- | --- | --- |
  44. * | x1 | Number | Starting position on the x axis |
  45. * | y1 | Number | Starting position on the y axis |
  46. * | x2 | Number | Ending position on the x axis |
  47. * | y2 | Number | Ending position on the y axis |
  48. * | class | String | Optional value. Set a custom css class to this line. |
  49. * @type {Array}
  50. * @memberof plugin-stanford
  51. * @default []
  52. * @example
  53. * lines: [
  54. * { x1: 0, y1: 0, x2: 65, y2: 65, class: "line1" },
  55. * { x1: 0, x2: 65, y1: 40, y2: 40, class: "line2" }
  56. * ]
  57. */
  58. lines: [],
  59. /**
  60. * Set scale values
  61. * @name scale
  62. * @memberof plugin-stanford
  63. * @type {object}
  64. * @property {object} [scale] scale object
  65. * @property {number} [scale.min=undefined] Minimum value of the color scale. Default: lowest value in epochs
  66. * @property {number} [scale.max=undefined] Maximum value of the color scale. Default: highest value in epochs
  67. * @property {number} [scale.width=20] Width of the color scale
  68. * @property {string|Function} [scale.format=undefined] Format of the axis of the color scale. Use 'pow10' to format as powers of 10 or a custom function. Example: d3.format("d")
  69. * @example
  70. * scale: {
  71. * max: 10000,
  72. * min: 1,
  73. * width: 500,
  74. *
  75. * // specify 'pow10' to format as powers of 10
  76. * format: "pow10",
  77. *
  78. * // or specify a format function
  79. * format: function(x) {
  80. * return x +"%";
  81. * }
  82. * },
  83. */
  84. scale_min: <number | undefined>undefined,
  85. scale_max: <number | undefined>undefined,
  86. scale_width: <number | undefined>20,
  87. scale_format: <number | undefined>undefined,
  88. /**
  89. * The padding for color scale element
  90. * @name padding
  91. * @memberof plugin-stanford
  92. * @type {object}
  93. * @property {object} [padding] padding object
  94. * @property {number} [padding.top=0] Top padding value.
  95. * @property {number} [padding.right=0] Right padding value.
  96. * @property {number} [padding.bottom=0] Bottom padding value.
  97. * @property {number} [padding.left=0] Left padding value.
  98. * @example
  99. * padding: {
  100. * top: 15,
  101. * right: 0,
  102. * bottom: 0,
  103. * left: 0
  104. * },
  105. */
  106. padding_top: 0,
  107. padding_right: 0,
  108. padding_bottom: 0,
  109. padding_left: 0,
  110. /**
  111. * Show additional regions anywhere on the chart.
  112. * - Each region object should consist with following options:
  113. *
  114. * | Key | Type | Default | Attributes | Description |
  115. * | --- | --- | --- | --- | --- |
  116. * | points | Array | | | Accepts a group of objects that has x and y.<br>These points should be added in a counter-clockwise fashion to make a closed polygon. |
  117. * | opacity | Number | `0.2` | &lt;optional> | Sets the opacity of the region as value between 0 and 1 |
  118. * | text | Function | | &lt;optional> | This function receives a value and percentage of the number of epochs in this region.<br>Return a string to place text in the middle of the region. |
  119. * | class | String | | &lt;optional> | Se a custom css class to this region, use the fill property in css to set a background color. |
  120. * @name regions
  121. * @memberof plugin-stanford
  122. * @type {Array}
  123. * @default []
  124. * @example
  125. * regions: [
  126. * {
  127. * points: [ // add points counter-clockwise
  128. * { x: 0, y: 0 },
  129. * { x: 40, y: 40 },
  130. * { x: 0, y: 40 },
  131. * ],
  132. * text: function (value, percentage) {
  133. * return `Normal Operations: ${value} (${percentage}%)`;
  134. * },
  135. * opacity: 0.2, // 0 to 1
  136. * class: "test-polygon1"
  137. * },
  138. * ...
  139. * ]
  140. */
  141. regions: []
  142. };
  143. }
  144. }