Skip to content
Snippets Groups Projects
Commit 98d41211 authored by Steve Reis's avatar Steve Reis
Browse files

Add heat map data structure

parent 40a87e2e
No related branches found
Tags v1.1.0-beta.1
No related merge requests found
import { Field, ObjectType } from '@nestjs/graphql';
import { Result } from './common/result.model';
@ObjectType()
export class HeatMapResult extends Result {
@Field()
name: string;
@Field(() => [[Number]])
matrix: number[][];
@Field(() => [String])
xLabels: string[];
@Field(() => [String])
yLabels: string[];
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment