Mattriks

Results 171 comments of Mattriks

Currently here's no automated way to do this. The easiest workaround would be to use `Theme(plot_padding=[l, r, t, b])`. See `?Theme` The main development of this feature would be done...

In the case of your plot above, yes I should have said use `Theme(plot_padding= )` with `vstack2` in #1169. Same for my design idea, you would need to combine: extracting...

With Gadfly v1.3, and in jupyter I see the following: ```julia raw_img = rand([1.0, 0.0], 20, 20) fig1 = spy(raw_img, Scale.color_continuous(minvalue=0, maxvalue=1), Guide.xlabel(nothing), Guide.ylabel(nothing), Guide.xticks(ticks=nothing), Guide.yticks(ticks=nothing), Theme(key_position=:none)) draw(SVGJS(), hstack(fig1, fig1))...

@montyvesselinov Can you test the original example with Gadfly v1.3. It's working for me without adding semicolons.

It's not a hack. In Gadfly, aesthetics can be transferred between layers. How would you do this plot, if there was 1 `color` aesthetic, and Guides needed to be put...

Also, aesthetic `color2` and `Scale.color2_discrete` follows the suggestion of `x2` and `Scale.x2_continuous` in implementing secondary x,y axes (https://github.com/GiovineItalia/Gadfly.jl/issues/373#issuecomment-137839202) (which @bjarthur gave thumbs up! - and has since removed). Allowing "scales...

That's an interesting suggestion. It looks like a new plot element i.e. `SuperLayer

Here's a solution (using the example from stackoverflow): ```julia x, y = [1, 2, 3, 4], [3, 7, 5, 1] xmin1, xmax1 = x.-0.1, x.+0.1 xmin2, xmax2 = x.-0.5, x.-0.3...

Currently, aesthetics override Themes (e.g. `color=` overrides `Theme(default_color=)`. So there is a question here about what is the syntax for having some layers autocolored, and some layers set to a...

Following #1386 here is a list of things to be done (in no order): - [ ] take absolute point sizes into account in setting axis limits - [ ]...