drawGraph method
- Canvas canvas
Draws the complete graph
Implementation
drawGraph(Canvas canvas) {
drawXAxis(canvas);
drawYAxis(canvas);
drawTocoXAxis(canvas);
drawTocoYAxis(canvas);
// drawBPMLine(canvas, interpretations!.baselineBpmList, graphBaseLine);
drawBPMLine(canvas, test!.bpmEntries, graphBpmLine);
drawBPMLine(canvas, test!.bpmEntries2, graphBpmLine2);
drawMHRLine(canvas, test!.mhrEntries, graphMHRLine);
drawMovements(canvas);
drawAutoMovements(canvas);
drawTocoLine(canvas);
// drawInterpretationAreas(
// canvas, interpretations!.getAccelerationsList(), graphSafeZone);
// drawInterpretationAreas(
// canvas, interpretations!.getDecelerationsList(), graphUnSafeZone);
// drawInterpretationAreas(
// canvas, interpretations!.getNoiseAreaList(), graphNoiseZone);
// canvas.drawLine(
// new Offset(xOrigin + 20,
// yOrigin - pixelsPerOneCM ),
// new Offset(xOrigin + 20,
// yOrigin - pixelsPerOneMM * 3),
// graphOutlines);
}