launch an interactive plot without creating a GUI for it
See original GitHub issueAfter creating a plot:
var plt = new ScottPlot.Plot(width, height);
var data = ScottPlot.DataGen.Sin(100);
plt.PlotSignal(data);
It would be nice if you could launch a launch a data browser window using a one-line command without actually having to create a window and add a user control… something like:
plt.LaunchFormsPlot();
plt.LaunchWpfPlot();
The code could live in extension methods packaged in the user control modules.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Interactive figures — Matplotlib 3.7.2 documentation
Matplotlib keeps a reference to all of the open figures created via pyplot.figure or pyplot.subplots so that the figures will not be garbage...
Read more >Creating a stand alone GUI which shows interactive ...
I'm looking to build a stand-alone tool (preferably EXE) that will take on a text file of specific format and plot it's content...
Read more >5 Python Libraries for Creating Interactive Plots
Learn how to create interactive plots with Python with our 5 favorite Python visualization libraries. Make charts that you can embed online ...
Read more >Creating a Python Interactive Plot Using Matplotlib in Jupyter
Put away those new libraries, you can build a Python interactive plot in Matplotlib. Customize them with UI controls in Jupyter lab using...
Read more >How to produce Interactive Matplotlib Plots in Jupyter ...
In this tutorial, I will cover some use cases and examples of interactive data visualization with Matplotlib using ipympl. We will first cover ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is an interesting idea! I think I understand it properly… it would let the user do something like this to launch their plot in a mouse-interactive window:
I’ll keep developing this as part of 4.1 (it’s not really an issue)