removed line bar on waterfall plot

This commit is contained in:
DJ2LS 2021-09-10 16:51:45 +02:00 committed by GitHub
parent dce14d0b41
commit 692f8ad5cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -386,8 +386,8 @@ function Spectrum(id, options) {
this.centerHz = (options && options.centerHz) ? options.centerHz : 0;
this.spanHz = (options && options.spanHz) ? options.spanHz : 0;
this.wf_size = (options && options.wf_size) ? options.wf_size : 0;
this.wf_rows = (options && options.wf_rows) ? options.wf_rows : 2048;
this.spectrumPercent = (options && options.spectrumPercent) ? options.spectrumPercent : 25;
this.wf_rows = (options && options.wf_rows) ? options.wf_rows : 1024;
this.spectrumPercent = (options && options.spectrumPercent) ? options.spectrumPercent : 0;
this.spectrumPercentStep = (options && options.spectrumPercentStep) ? options.spectrumPercentStep : 0;
this.averaging = (options && options.averaging) ? options.averaging : 0;
this.maxHold = (options && options.maxHold) ? options.maxHold : false;

View file

@ -7,5 +7,5 @@ html, body {
#waterfall {
display: block;
width: 100%;
height: 350px;
height: 100%;
}