Removed support for hline, vline markers

(not yet implemented)
This commit is contained in:
Josef Heinen 2016-03-05 12:56:01 +01:00
parent e342805752
commit 9761ede5c4
2 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,6 @@ const gr_markertype = Dict(
:auto => 1, :none => -1, :ellipse => -1, :rect => -7, :diamond => -13, :auto => 1, :none => -1, :ellipse => -1, :rect => -7, :diamond => -13,
:utriangle => -3, :dtriangle => -5, :pentagon => -21, :hexagon => -22, :utriangle => -3, :dtriangle => -5, :pentagon => -21, :hexagon => -22,
:heptagon => -23, :octagon => -24, :cross => 2, :xcross => 5, :heptagon => -23, :octagon => -24, :cross => 2, :xcross => 5,
:hline => -1, :vline => -1,
:star4 => -25, :star5 => -26, :star6 => -27, :star7 => -28, :star8 => -29 ) :star4 => -25, :star5 => -26, :star6 => -27, :star7 => -28, :star8 => -29 )
const gr_halign = Dict(:left => 1, :hcenter => 2, :right => 3) const gr_halign = Dict(:left => 1, :hcenter => 2, :right => 3)

View File

@ -241,7 +241,10 @@ supportedTypes(::GRPackage) = [:none, :line, :path, :steppre, :steppost, :sticks
:hline, :vline, :contour, :path3d, :scatter3d, :surface, :hline, :vline, :contour, :path3d, :scatter3d, :surface,
:wireframe, :ohlc, :pie] :wireframe, :ohlc, :pie]
supportedStyles(::GRPackage) = [:auto, :solid, :dash, :dot, :dashdot] supportedStyles(::GRPackage) = [:auto, :solid, :dash, :dot, :dashdot]
supportedMarkers(::GRPackage) = vcat(_allMarkers, Shape) supportedMarkers(::GRPackage) = [:auto, :none, :ellipse, :rect, :diamond, :utriangle,
:dtriangle, :pentagon, :hexagon, :heptagon,
:octagon, :cross, :xcross, :star4, :star5, :star6,
:star7, :star8]
supportedScales(::GRPackage) = [:identity, :log10] supportedScales(::GRPackage) = [:identity, :log10]
subplotSupported(::GRPackage) = true subplotSupported(::GRPackage) = true