From 026b43daee033cef506c4193cfcc2ef0e6aa3ac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Juli=C3=A1n=20Sierra=20=C3=81lvarez?= <160289138+Pixelguy14@users.noreply.github.com> Date: Wed, 11 Sep 2024 19:24:16 -0600 Subject: [PATCH] Revision of plot view --- README.md | 4 ++-- app.jl | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 520c967..8d1e495 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Then open a terminal on the directory "JuliaIMZML_GUI" and put the next code: diff --git a/app.jl b/app.jl index d30670a..cc7a5ab 100644 --- a/app.jl +++ b/app.jl @@ -51,13 +51,14 @@ using Statistics layoutSpectra = PlotlyBase.Layout( title = "Spectra Plot", xaxis = PlotlyBase.attr( - title = "m/z", + title = "m/z", showgrid = true ), yaxis = PlotlyBase.attr( title = "Intensity", showgrid = true ), + height = 700 ) traceSpectra = PlotlyBase.scatter(x=[], y=[], mode="lines+markers") @out plotdata = [traceSpectra]