From 744ad9211bed7deeae22286e7d66fd7da89a4f25 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sun, 16 Feb 2020 21:09:14 -0600 Subject: [PATCH] Use straight lines on simple measure graphs. --- web/src/components/measure-details/simple-details.ts | 3 ++- web/src/components/measure-summaries/simple-summary-graph.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/web/src/components/measure-details/simple-details.ts b/web/src/components/measure-details/simple-details.ts index 2ef7354..87c241b 100644 --- a/web/src/components/measure-details/simple-details.ts +++ b/web/src/components/measure-details/simple-details.ts @@ -15,9 +15,10 @@ export class SimpleDetails extends Vue { // private newMeasurement; private moment = moment; private chartOptions = { + markers: { size: 6 }, noData: { text: 'no data', style: { fontSize: '18px' } }, - stroke: { curve: 'smooth' }, + stroke: { curve: 'straight' }, xaxis: { type: 'datetime' } }; diff --git a/web/src/components/measure-summaries/simple-summary-graph.ts b/web/src/components/measure-summaries/simple-summary-graph.ts index 3faf42e..d7e48be 100644 --- a/web/src/components/measure-summaries/simple-summary-graph.ts +++ b/web/src/components/measure-summaries/simple-summary-graph.ts @@ -9,7 +9,7 @@ export class SimpleSummaryGraph extends Vue { private chartOptions = { chart: { sparkline: { enabled: true } }, grid: { padding: { top: 20 }}, - stroke: { curve: 'smooth' }, + stroke: { curve: 'straight' }, noData: { text: 'no data', style: { fontSize: '18px' } }, xaxis: { type: 'datetime' }