Custom uifigure components

A library with custom app components for Matlab
62 Downloads
Aktualisiert 19. Mai 2023

WEBLAB

View Custom uifugure components on File Exchange

A tool for developing custom uifigure components in Matlab

How To UseComponentsHow To Make ChangesLicense

How To Use

To use a custom component, you will to create a Frame inside the uifigure and then insert your component into it.

% Create the uifigure
uifig = uifigure();
% Create the frame
frame = weblab.internal.Frame("Parent", uifig);
% Initialize your component
myComponent = weblab.components.MyComponent();
% Insert
frame.insert(myComponent);

Note: The inserted component will occupy the full height and width of the frame. If you want to reposition or resize it inside the figure, use the Position property of the Frame.

Components

These components are currently supported:

More to come! These are the next planned components:

  • PDF renderer
  • Interactive plots

Developing your own components

WIP

How To Make Changes

If you make changes to the Typescript source code, you will need to rebuild the project. For that, you'll first need Node.js (which comes with npm) installed on your computer.

From a terminal at the project root, type the following commands:

# Go into the HTML source folder
$ cd +weblab/source

# Install dependencies
$ npm install

Now you can make changes in the TS source code, located inside the +weblab/source/src subdirectory.

Important: Once your changes are complete, rebuild the project by running in the terminal

$ npm run build

Issues and PRs

Issues and pull requests are appreciated. I will do my best to take into account your opinions and recommendations

License

License: MIT


Zitieren als

Antonio Hortal (2025). Custom uifigure components (https://github.com/LordTumnus/weblab/releases/tag/0.1.4), GitHub. Abgerufen.

Kompatibilität der MATLAB-Version
Erstellt mit R2022b
Kompatibel mit R2019b und späteren Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

+weblab/+components

+weblab/+components/+mixin

+weblab/+components/+pseudo

+weblab/+event

+weblab/+event/+fromJS

+weblab/+internal

+weblab/+internal/+deprecated

+weblab/+internal/+pseudo

+weblab/+style

+weblab/+utils

+weblab/examples/deprecated/+weblab/+internal/+deprecated

demos/toolbar

Version Veröffentlicht Versionshinweise
0.1.4.0

See release notes for this release on GitHub: https://github.com/LordTumnus/weblab/releases/tag/0.1.4

0.1.3.0

See release notes for this release on GitHub: https://github.com/LordTumnus/weblab/releases/tag/0.1.3

0.1.2.0

See release notes for this release on GitHub: https://github.com/LordTumnus/weblab/releases/tag/0.1.2

0.1.1.0

See release notes for this release on GitHub: https://github.com/LordTumnus/weblab/releases/tag/0.1.1

0.1.0

Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.
Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.