InspectDR.jl
InspectDR.jl copied to clipboard
Fast, interactive Julia/GTK+ plots (+Smith charts +Gtk widget +Cairo-only images)
For a beginner it is not obvious how to zoom. What would help: - [ ] add buttons zoom in, zoom out, home (initial size) - [ ] add a...
For usability it would be good if the number of visible axes ticks stays constant when zooming. If you zoom in the total number of axis ticks over the full...
I am not able to change the size of the plot window. Example code: ```julia using Plots; inspectdr() x=0:0.05:100 y1=sin.(x) p1 = plot(x,y1, size=(1200,700), legend=false) display(p1); ``` The size is...
I get the following error messages when using InspectDR: ```julia julia> include("test/plot.jl") Gtk-Message: 12:00:41.791: Failed to load module "unity-gtk-module" Gtk-Message: 12:00:41.810: Failed to load module "canberra-gtk-module" Gtk-Message: 12:00:41.810: Failed to...
Requested by @HackYardo in [#26 here](https://github.com/ma-laforge/InspectDR.jl/issues/26#issuecomment-855321559) Try to figure out a clean-ish way to do this without making the code too unwieldy. This set of components (axis type, plot area...
Plotting with julia 1.6.0, Plots 1.11.1 and InspectDR 0.4.0. When setting a plot title, the upper half of it is truncated, both in the interactive window and in exported files....
Appears that the `getstyle()` function uses `DEFAULT_FONTNAME` instead of the `fontname` parameter provided.
There is currently no way to specify a default line format (thickness, color, etc) for the actual plotted data. It would be nice to add this feature.
``` using Plots inspectdr() # gr() function testPlot() P1 = plot(Plots.fakedata(50,5)) P2 = plot(Plots.fakedata(50,5)) plot(P1, P2, layout=(2,1), size=(1200,600)) gui() end ``` Instead of getting two plots arranged vertically, got two...
At the line I call gui(), I got the following errors. I can't seem to reproduce it with a demo script. Not sure what is wrong. If I comment out...