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

Merge branch 'feat/linechart-integration' into 'develop'

Roc + line chart integration

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