From 6a749c195394b2e4aa06784b05844e8dd9ca0107 Mon Sep 17 00:00:00 2001 From: amaya Date: Fri, 18 Mar 2016 01:44:14 +0900 Subject: [PATCH] fix typo "pointsize" --- .../org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala b/src/main/scala/org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala index c807589..ffbd35b 100644 --- a/src/main/scala/org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala +++ b/src/main/scala/org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala @@ -115,7 +115,7 @@ class GnuplotPlotter(chart: Chart) extends Plotter(chart) { def plotChart(chart: Chart, defaultTerminal: String = "dumb") { lines += "# Chart settings" chart.title.foreach(t => lines += "set title \"%s\"" format (t)) - chart.pointSize.foreach(t => lines += "set pointSize %f" format (t)) + chart.pointSize.foreach(t => lines += "set pointsize %f" format (t)) // legend if (chart.showLegend) { lines += "set key %s %s" format(chart.legendPosX.toString.toLowerCase, chart.legendPosY.toString.toLowerCase)