Use straight lines on simple measure graphs.

This commit is contained in:
Jonathan Bernard 2020-02-16 21:09:14 -06:00
parent 35a116abbb
commit 744ad9211b
2 changed files with 3 additions and 2 deletions

View File

@ -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' }
};

View File

@ -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' }