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

feat: Line chart viz integration

parent b663faf8
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,8 @@ export const dataROCToLineResult = jsonata(` ...@@ -144,7 +144,8 @@ export const dataROCToLineResult = jsonata(`
"y": data.series.data.$[1], "y": data.series.data.$[1],
"type": 0 "type": 0
} }
] ],
"hasBisector": true
}) })
`); `);
......
...@@ -51,4 +51,7 @@ export class LineChartResult extends Result { ...@@ -51,4 +51,7 @@ export class LineChartResult extends Result {
@Field(() => [LineResult]) @Field(() => [LineResult])
lines: LineResult[]; lines: LineResult[];
@Field({ nullable: true, defaultValue: false })
hasBisector?: boolean;
} }
...@@ -210,6 +210,7 @@ type LineChartResult { ...@@ -210,6 +210,7 @@ type LineChartResult {
xAxis: ChartAxis xAxis: ChartAxis
yAxis: ChartAxis yAxis: ChartAxis
lines: [LineResult!]! lines: [LineResult!]!
hasBisector: Boolean
} }
type BarChartResult { type BarChartResult {
......
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