hide tics in gallery view
This commit is contained in:
@@ -26,10 +26,6 @@ public class GnuplotFileGenerator {
|
|||||||
settings.getHeight());
|
settings.getHeight());
|
||||||
|
|
||||||
appendfln(result, "set datafile separator \"%s\"", settings.getDatafileSeparator());
|
appendfln(result, "set datafile separator \"%s\"", settings.getDatafileSeparator());
|
||||||
// appendln(result, "set locale \"de_DE.UTF-8\"");
|
|
||||||
// appendln(result, "set format y \"%.0f\"");
|
|
||||||
appendfln(result, "set tics font \",%d\"", TICKS_FONT_SIZE);
|
|
||||||
appendln(result, computeYTicks(settings, dataSeries));
|
|
||||||
|
|
||||||
settings.getAggregate().addGnuplotDefinitions(result, settings.getDatafileSeparator(), dataSeries);
|
settings.getAggregate().addGnuplotDefinitions(result, settings.getDatafileSeparator(), dataSeries);
|
||||||
|
|
||||||
@@ -96,6 +92,12 @@ public class GnuplotFileGenerator {
|
|||||||
appendln(result, "set rmargin 11"); // margin 11 -> 110px
|
appendln(result, "set rmargin 11"); // margin 11 -> 110px
|
||||||
appendln(result, "set tmargin 3"); // margin 3 -> 57px - marker (1)
|
appendln(result, "set tmargin 3"); // margin 3 -> 57px - marker (1)
|
||||||
appendln(result, "set bmargin 4"); // margin 4 -> 76
|
appendln(result, "set bmargin 4"); // margin 4 -> 76
|
||||||
|
|
||||||
|
appendfln(result, "set tics font \",%d\"", TICKS_FONT_SIZE);
|
||||||
|
appendln(result, computeYTicks(settings, dataSeries));
|
||||||
|
} else {
|
||||||
|
appendfln(result, "set tics font \",%d\"", TICKS_FONT_SIZE);
|
||||||
|
appendln(result, computeYTicks(settings, dataSeries));
|
||||||
}
|
}
|
||||||
|
|
||||||
appendf(result, "plot ");
|
appendf(result, "plot ");
|
||||||
|
|||||||
Reference in New Issue
Block a user