From 935d98929ad610c370bbf41fb9a7043c07912fea Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Thu, 7 Jul 2016 20:43:13 -0700 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da86551..0ae04e5 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,9 @@ graph := chart.Chart{ graph.Render(chart.PNG, buffer) //thats it! ``` -The Key areas to note are that we have to explicitly turn on two features, the axes and the last value label. +The key areas to note are that we have to explicitly turn on two features, the axes and the last value label. When calling `.Render(..)` we add a parameter, `chart.PNG` that tells the renderer to use a raster renderer (in this case, an awesome library called `draw2d`). + +Coming in the near future will be the option to output to SVG. # Design Philosophy