(data: Series | ArrayType1D)
| 26 | private $dateObjectArray: Array<Date> |
| 27 | |
| 28 | constructor(data: Series | ArrayType1D) { |
| 29 | if (data instanceof Series) { |
| 30 | this.$dateObjectArray = this.processData(data.values as ArrayType1D) |
| 31 | } else { |
| 32 | this.$dateObjectArray = this.processData(data) |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Processed the data values into internal structure for easy access |
nothing calls this directly
no test coverage detected