Commit a75a04e5 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

fix tests

parent 9462d6b7
Loading
Loading
Loading
Loading
+13 −10
Original line number Diff line number Diff line
@@ -2,18 +2,21 @@ width: 1200px;
height: 480px;

plot {
  legend: inside bottom center;
  legend-title: "The quick brown fox";
  data: csv('tests/testdata/city_temperatures.csv');
  x: $1;
  y: $2;
  group: $0;

  series {
    title: "Series 1";
    xs: csv('tests/testdata/measurement.csv', 0);
    ys: csv('tests/testdata/measurement.csv', 2);
  axis-x-format: string;
  axis-y-min: -10;
  axis-y-max: 32;

  legend {
    position: bottom center inside;
  }

  series {
    title: "Series 2";
    xs: csv('tests/testdata/measurement.csv', 0);
    ys: csv('tests/testdata/measurement.csv', 4);
  layer {
    type: lines;
    line-color: $0;
  }
}
+98 −74

File changed.

Preview size limit exceeded, changes collapsed.

+13 −10
Original line number Diff line number Diff line
@@ -2,18 +2,21 @@ width: 1200px;
height: 480px;

plot {
  legend: inside bottom left;
  legend-title: "The quick brown fox";
  data: csv('tests/testdata/city_temperatures.csv');
  x: $1;
  y: $2;
  group: $0;

  series {
    title: "Series 1";
    xs: csv('tests/testdata/measurement.csv', 0);
    ys: csv('tests/testdata/measurement.csv', 2);
  axis-x-format: string;
  axis-y-min: -10;
  axis-y-max: 32;

  legend {
    position: bottom left inside;
  }

  series {
    title: "Series 2";
    xs: csv('tests/testdata/measurement.csv', 0);
    ys: csv('tests/testdata/measurement.csv', 4);
  layer {
    type: lines;
    line-color: $0;
  }
}
+98 −74

File changed.

Preview size limit exceeded, changes collapsed.

+13 −10
Original line number Diff line number Diff line
@@ -2,18 +2,21 @@ width: 1200px;
height: 480px;

plot {
  legend: inside bottom right;
  legend-title: "The quick brown fox";
  data: csv('tests/testdata/city_temperatures.csv');
  x: $1;
  y: $2;
  group: $0;

  series {
    title: "Series 1";
    xs: csv('tests/testdata/measurement.csv', 0);
    ys: csv('tests/testdata/measurement.csv', 2);
  axis-x-format: string;
  axis-y-min: -10;
  axis-y-max: 32;

  legend {
    position: bottom right inside;
  }

  series {
    title: "Series 2";
    xs: csv('tests/testdata/measurement.csv', 0);
    ys: csv('tests/testdata/measurement.csv', 4);
  layer {
    type: lines;
    line-color: $0;
  }
}
Loading