# Handle graphics

Published articles for Handle graphics.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Improving graphics interactivity

DevFeed: [Improving graphics interactivity](<https://devfeed.tech/articles/improving-graphics-interactivity-22319.md>)

Original publisher: [Read original article](<https://undocumentedmatlab.com/articles/improving-graphics-interactivity>)

Author: Yair Altman

Published: 2019-04-21T21:03:10Z

Content type: tutorial

Language: en

Sources: [Undocumented Matlab](<https://devfeed.tech/sources/undocumented-matlab.md>)

Topics: [MATLAB](<https://devfeed.tech/topics/matlab.md>), [GUI](<https://devfeed.tech/topics/gui.md>), [Usability](<https://devfeed.tech/topics/usability.md>)

Tags: [graphics](<https://devfeed.tech/tags/graphics.md>), [gui](<https://devfeed.tech/tags/gui.md>), [gui-handle-graphics-medium-risk-of-breaking-in-future-versions-stock-matlab-function](<https://devfeed.tech/tags/gui-handle-graphics-medium-risk-of-breaking-in-future-versions-stock-matlab-function.md>), [handle-graphics](<https://devfeed.tech/tags/handle-graphics.md>), [medium-risk-of-breaking-in-future-versions](<https://devfeed.tech/tags/medium-risk-of-breaking-in-future-versions.md>), [performance](<https://devfeed.tech/tags/performance.md>), [profiling](<https://devfeed.tech/tags/profiling.md>), [pure-matlab](<https://devfeed.tech/tags/pure-matlab.md>), [script](<https://devfeed.tech/tags/script.md>), [stock-matlab-function](<https://devfeed.tech/tags/stock-matlab-function.md>), [toolbar](<https://devfeed.tech/tags/toolbar.md>), [usability](<https://devfeed.tech/tags/usability.md>)

### AI overview

This article examines MATLAB R2018b's default axes mouse interactions, focusing on performance and usability problems. It describes replacing inefficient DataTipInteraction and PanInteraction settings with RegionZoomInteraction and outlines a test setup for measuring the changes.

### Source excerpt

Matlab R2018b added default axes mouse interactivity at the expense of performance. Luckily, we can speed-up the default axes. The post Improving graphics interactivity appeared first on Undocumented Matlab. Related posts: Undocumented HG2 graphics events Matlab's new HG2 graphics engine includes many new undocumented events that could be used in various ways. ... Handle Graphics Behavior HG behaviors are an important aspect of Matlab graphics that enable custom control of handle functionality. ... Improving save performance There are many different ways of improving Matlab's standard save function performance. ... Waterloo graphics Waterloo is an open-source library that can significantly improve Matlab GUI. ...

## Undocumented plot marker types

DevFeed: [Undocumented plot marker types](<https://devfeed.tech/articles/undocumented-plot-marker-types-22328.md>)

Original publisher: [Read original article](<https://undocumentedmatlab.com/articles/undocumented-plot-marker-types>)

Author: Yair Altman

Published: 2019-03-13T11:05:14Z

Content type: tutorial

Language: en

Sources: [Undocumented Matlab](<https://devfeed.tech/sources/undocumented-matlab.md>)

Topics: [MATLAB](<https://devfeed.tech/topics/matlab.md>), [Programming](<https://devfeed.tech/topics/programming.md>), [GUI](<https://devfeed.tech/topics/gui.md>)

Tags: [graphics](<https://devfeed.tech/tags/graphics.md>), [handle-graphics](<https://devfeed.tech/tags/handle-graphics.md>), [handle-graphics-hidden-property-low-risk-of-breaking-in-future-versions-stock-matlab-function-undocu](<https://devfeed.tech/tags/handle-graphics-hidden-property-low-risk-of-breaking-in-future-versions-stock-matlab-function-undocu.md>), [hg2](<https://devfeed.tech/tags/hg2.md>), [hidden-property](<https://devfeed.tech/tags/hidden-property.md>), [internal-component](<https://devfeed.tech/tags/internal-component.md>), [low-risk-of-breaking-in-future-versions](<https://devfeed.tech/tags/low-risk-of-breaking-in-future-versions.md>), [plotting](<https://devfeed.tech/tags/plotting.md>), [properties](<https://devfeed.tech/tags/properties.md>), [pure-matlab](<https://devfeed.tech/tags/pure-matlab.md>), [stock-matlab-function](<https://devfeed.tech/tags/stock-matlab-function.md>), [undocumented-feature](<https://devfeed.tech/tags/undocumented-feature.md>), [visualization](<https://devfeed.tech/tags/visualization.md>)

### AI overview

This article explains how MATLAB's hidden MarkerHandle property exposes undocumented plot marker styles, including the hbar and vbar styles. It also describes related marker customization capabilities such as transparency and color gradients.

### Source excerpt

Undocumented plot marker styles can easily be accesses using a hidden plot-line property. The post Undocumented plot marker types appeared first on Undocumented Matlab. Related posts: Types of undocumented Matlab aspects This article lists the different types of undocumented/unsupported/hidden aspects in Matlab... Undocumented scatter plot behavior The scatter plot function has an undocumented behavior when plotting more than 100 points: it returns a single unified patch object handle, rather than a patch handle for each specific point as it returns with 100 or less points.... Plot markers transparency and color gradient Matlab plot-line markers can be customized to have transparency and color gradients. ... Undocumented scatter plot jitter Matlab's scatter plot can automatically jitter data to enable better visualization of distribution density. ...