| 11 | // See the License for the specific language governing permissions and |
| 12 | // limitations under the License. |
| 13 | export interface SeriesData { |
| 14 | id?: number; |
| 15 | name?: string; |
| 16 | fields: Field[]; // All fields of equal length |
| 17 | |
| 18 | // The number of rows |
| 19 | length?: number; |
| 20 | |
| 21 | // series color showing in graph |
| 22 | color?: string |
| 23 | |
| 24 | rawName?: string // used for name override |
| 25 | } |
| 26 | |
| 27 | export enum FieldType { |
| 28 | Time = 'time', // or date |
nothing calls this directly
no outgoing calls
no test coverage detected