blessed-contrib
blessed-contrib copied to clipboard
Build terminal dashboards using ascii/ansi art and javascript
Allow negative values on line chart Fixes #134
As discussed on https://github.com/cjbassi/ytop/issues/79 the use of Braille patterns to plot graphs may require the terminal to be set to use a font like Symbola for that part of the...
It could be a 'nice to see' enhancement. I wish I could scroll on log screen for the past logs.
Why does canvas compute its size in this way, quadrupling height and doubling width and subtracting... 12? ``` Canvas.prototype.calcSize = function() { this.canvasSize = {width: this.width*2-12, height: this.height*4}; }; ```
Before this, `options.file` had to be a `String`, `Buffer`, or `URL` (though only a URL on the local filesystem) as it was passed directly to `createReadStream`. I added in a...
Hi, thx a lot for the project, is there any documentation related to syntax of the logger (bold, colors etc)?
Is there a possibility to update data in the tree widget and not to setData every time? When there is data upcoming, I have to update my tree. Right now...
As the title says, the `Grid` is always created using the 100% of the screen size. Sometimes we could want more complex layout where some part of the screen is...
`Grid` is meant to be used with number of columns, which means percentage of the width/height of the screen. This means the real size of a grid cell is not...
At the moment it doesn't seem possible to change the `columnWidth` or `columnSpacing` at a later time. If the `data` is changed then `setData` blows up because it checks `columnWidth`...