Skip to content

Commit 4c93337

Browse files
c-blakeVindaar
authored andcommitted
Nix not very helpful geom_ name-space prefix in GeomKind enum strings.
1 parent db4a39e commit 4c93337

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/ggplotnim/ggplot_types.nim

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -324,15 +324,15 @@ type
324324
bbSubset = "subset"
325325

326326
GeomKind* = enum
327-
gkPoint = "geom_point"
328-
gkBar = "geom_bar"
329-
gkHistogram = "geom_histogram"
330-
gkFreqPoly = "geom_freqpoly"
331-
gkTile = "geom_tile"
332-
gkLine = "geom_line"
333-
gkErrorBar = "geom_errorbar"
334-
gkText = "geom_text"
335-
gkRaster = "geom_raster"
327+
gkPoint = "point"
328+
gkBar = "bar"
329+
gkHistogram = "histogram"
330+
gkFreqPoly = "freqpoly"
331+
gkTile = "tile"
332+
gkLine = "line"
333+
gkErrorBar = "errorbar"
334+
gkText = "text"
335+
gkRaster = "raster"
336336

337337
HistogramDrawingStyle* = enum
338338
hdBars = "bars" ## draws historams by drawing individual bars right next to

0 commit comments

Comments
 (0)